Skip to main content

Comment

Properties

NameTypeDescriptionNotes
commenter_idstrId of the identity making the comment[optional]
commenter_namestrHuman-readable display name of the identity making the comment[optional]
bodystrContent of the comment[optional]
var_datedatetimeDate and time comment was made[optional]
}

Example

from sailpoint.beta.models.comment import Comment

comment = Comment(
commenter_id='2c918084660f45d6016617daa9210584',
commenter_name='Adam Kennedy',
body='Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.',
var_date='2017-07-11T18:45:37.098Z'
)

[Back to top]