starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,40 @@
---
id: v2024-completed-approval-reviewer-comment
title: CompletedApprovalReviewerComment
pagination_label: CompletedApprovalReviewerComment
sidebar_label: CompletedApprovalReviewerComment
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'CompletedApprovalReviewerComment', 'V2024CompletedApprovalReviewerComment']
slug: /tools/sdk/python/v2024/models/completed-approval-reviewer-comment
tags: ['SDK', 'Software Development Kit', 'CompletedApprovalReviewerComment', 'V2024CompletedApprovalReviewerComment']
---
# CompletedApprovalReviewerComment
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**comment** | **str** | Comment content. | [optional]
**created** | **datetime** | Date and time comment was created. | [optional]
**author** | [**CommentDtoAuthor**](comment-dto-author) | | [optional]
}
## Example
```python
from sailpoint.v2024.models.completed_approval_reviewer_comment import CompletedApprovalReviewerComment
completed_approval_reviewer_comment = CompletedApprovalReviewerComment(
comment='This is a comment.',
created='2017-07-11T18:45:37.098Z',
author=sailpoint.v2024.models.comment_dto_author.CommentDto_author(
type = 'IDENTITY',
id = '2c9180847e25f377017e2ae8cae4650b',
name = 'john.doe', )
)
```
[[Back to top]](#)