Skip to main content

ApprovalComment

Comments Object

Properties

NameTypeDescriptionNotes
authorApprovalIdentity[optional]
commentstrComment to be left on an approval[optional]
created_datestrDate the comment was created[optional]
}

Example

from sailpoint.beta.models.approval_comment import ApprovalComment

approval_comment = ApprovalComment(
author=sailpoint.beta.models.approval_identity.ApprovalIdentity(
id = '85d173e7d57e496569df763231d6deb6a',
type = 'IDENTITY',
name = 'John Doe', ),
comment='Looks good',
created_date='2023-04-12T23:20:50.52Z'
)

[Back to top]