Skip to main content

ApprovalComment

Properties

NameTypeDescriptionNotes
commentstrThe comment text[optional]
commenterstrThe name of the commenter[optional]
var_datedatetimeA date-time in ISO-8601 format[optional]
}

Example

from sailpoint.v3.models.approval_comment import ApprovalComment

approval_comment = ApprovalComment(
comment='This request was autoapproved by our automated ETS subscriber.',
commenter='Automated AR Approval',
var_date='2018-06-25T20:22:28.104Z'
)

[Back to top]