Skip to main content

Commentdto

Properties

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

Example

from sailpoint.access_requests.models.commentdto import Commentdto

commentdto = Commentdto(
comment='This is a comment.',
created='2017-07-11T18:45:37.098Z',
author=sailpoint.access_requests.models.commentdto_author.commentdto_author(
type = 'IDENTITY',
id = '2c9180847e25f377017e2ae8cae4650b',
name = 'john.doe', )
)

[Back to top]