Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/CommentDto.md
2025-02-20 12:59:19 -05:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
comment-dto CommentDto CommentDto CommentDto pythonsdk
python
Python
sdk
CommentDto
CommentDto
/tools/sdk/python/v3/models/comment-dto
SDK
Software Development Kit
CommentDto
CommentDto

CommentDto

Properties

Name Type Description Notes
comment str Comment content. [optional]
created datetime Date and time comment was created. [optional]
author CommentDtoAuthor [optional]
}

Example

from sailpoint.v3.models.comment_dto import CommentDto

comment_dto = CommentDto(
comment='This is a comment.',
created='2017-07-11T18:45:37.098Z',
author=sailpoint.v3.models.comment_dto_author.CommentDto_author(
                    type = 'IDENTITY', 
                    id = '2c9180847e25f377017e2ae8cae4650b', 
                    name = 'john.doe', )
)

[Back to top]