CommentDto
Properties
Name | Type | Description | Notes |
---|---|---|---|
comment | str | Comment content. | [optional] |
author | CommentDtoAuthor | [optional] | |
created | datetime | Date and time comment was created. | [optional] |
} |
Example
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'
)