Skip to main content

ApprovalForwardHistory

Properties

NameTypeDescriptionNotes
old_approver_namestrDisplay name of approver from whom the approval was forwarded.[optional]
new_approver_namestrDisplay name of approver to whom the approval was forwarded.[optional]
commentstrComment made while forwarding.[optional]
modifieddatetimeTime at which approval was forwarded.[optional]
forwarder_namestrDisplay name of forwarder who forwarded the approval.[optional]
reassignment_typeReassignmentType[optional]
}

Example

from sailpoint.v2024.models.approval_forward_history import ApprovalForwardHistory

approval_forward_history = ApprovalForwardHistory(
old_approver_name='Frank Mir',
new_approver_name='Al Volta',
comment='Forwarding from Frank to Al',
modified='2019-08-23T18:52:57.398Z',
forwarder_name='William Wilson',
reassignment_type='AUTOMATIC_REASSIGNMENT'
)

[Back to top]