Skip to main content

CommentDto1

Properties

NameTypeDescriptionNotes
commentstrComment content.[optional]
createddatetimeDate and time comment was created.[optional]
authorCommentDto1Author[optional]
}

Example

from sailpoint.beta.models.comment_dto1 import CommentDto1

comment_dto1 = CommentDto1(
comment='This is a comment.',
created='2017-07-11T18:45:37.098Z',
author=sailpoint.beta.models.comment_dto_1_author.CommentDto_1_author(
type = 'IDENTITY',
id = '2c9180847e25f377017e2ae8cae4650b',
name = 'john.doe', )
)

[Back to top]