Skip to main content

CommentDtoAuthor

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]DTO type of the commenting identity.[optional]
idstrID of the commenting identity.[optional]
namestrDisplay name of the commenting identity.[optional]
}

Example

from sailpoint.beta.models.comment_dto_author import CommentDtoAuthor

comment_dto_author = CommentDtoAuthor(
type='IDENTITY',
id='2c91808568c529c60168cca6f90c1313',
name='Adam Kennedy'
)

[Back to top]