Skip to main content

CommentDto

Properties

NameTypeDescriptionNotes
commentstrComment content.[optional]
createddatetimeDate and time comment was created.[optional]
authorCommentDtoAuthor[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]