Skip to main content

CommentDto

Properties

NameTypeDescriptionNotes
commentstrComment content.[optional]
authorCommentDtoAuthor[optional]
createddatetimeDate 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'
)

[Back to top]