Skip to main content

RequestedItemStatusPreApprovalTriggerDetails

Properties

NameTypeDescriptionNotes
commentstrComment left for the pre-approval decision[optional]
reviewerstrThe reviewer of the pre-approval decision[optional]
decisionEnum [ 'APPROVED', 'REJECTED' ]The decision of the pre-approval trigger[optional]
}

Example

from sailpoint.v2024.models.requested_item_status_pre_approval_trigger_details import RequestedItemStatusPreApprovalTriggerDetails

requested_item_status_pre_approval_trigger_details = RequestedItemStatusPreApprovalTriggerDetails(
comment='Access is Approved',
reviewer='John Doe',
decision='APPROVED'
)

[Back to top]