Skip to main content

ApprovalComment

Properties

NameTypeDescriptionNotes
commentstrComment provided either by the approval requester or the approver.[required]
timestampdatetimeThe time when this comment was provided.[required]
userstrName of the user that provided this comment.[required]
idstrId of the user that provided this comment.[required]
changed_to_statusEnum [ 'PENDING_APPROVAL', 'APPROVED', 'REJECTED' ]Status transition of the draft.[required]
}

Example

from sailpoint.v2024.models.approval_comment import ApprovalComment

approval_comment = ApprovalComment(
comment='Approval comment',
timestamp='2021-05-11T22:23:16Z',
user='user.name',
id='549bf881-1ac4-4a64-9acf-6014e8a3a887',
changed_to_status='PENDING_APPROVAL'
)

[Back to top]