--- id: beta-pre-approval-trigger-details title: PreApprovalTriggerDetails pagination_label: PreApprovalTriggerDetails sidebar_label: PreApprovalTriggerDetails sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'PreApprovalTriggerDetails', 'BetaPreApprovalTriggerDetails'] slug: /tools/sdk/python/beta/models/pre-approval-trigger-details tags: ['SDK', 'Software Development Kit', 'PreApprovalTriggerDetails', 'BetaPreApprovalTriggerDetails'] --- # 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 ```python from sailpoint.beta.models.pre_approval_trigger_details import PreApprovalTriggerDetails pre_approval_trigger_details = PreApprovalTriggerDetails( comment='Access is Approved', reviewer='John Doe', decision='APPROVED' ) ``` [[Back to top]](#)