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: beta-comment-dto
title: CommentDto
pagination_label: CommentDto
sidebar_label: CommentDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'CommentDto', 'BetaCommentDto']
slug: /tools/sdk/python/beta/models/comment-dto
tags: ['SDK', 'Software Development Kit', 'CommentDto', 'BetaCommentDto']
---
# CommentDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**comment** | **str** | Comment content. | [optional]
**author** | [**CommentDtoAuthor**](comment-dto-author) | | [optional]
**created** | **datetime** | Date and time comment was created. | [optional]
}
## Example
```python
from sailpoint.beta.models.comment_dto import CommentDto
comment_dto = CommentDto(
comment='This is a comment.',
author=sailpoint.beta.models.comment_dto_author.CommentDto_author(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'Adam Kennedy', ),
created='2017-07-11T18:45:37.098Z'
)
```
[[Back to top]](#)