PreApprovalTriggerDetails
Provides additional details about the pre-approval trigger for this request.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| comment | str | Comment left for the pre-approval decision | [optional] |
| reviewer | str | The reviewer of the pre-approval decision | [optional] |
| decision | Enum [ 'APPROVED', 'REJECTED' ] | The decision of the pre-approval trigger | [optional] |
| } |
Example
from sailpoint.v2025.models.pre_approval_trigger_details import PreApprovalTriggerDetails
pre_approval_trigger_details = PreApprovalTriggerDetails(
comment='Access is Approved',
reviewer='John Doe',
decision='APPROVED'
)