Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/ApprovalApprovalCriteriaRejection.md
2025-07-30 20:42:39 +00:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-approval-approval-criteria-rejection ApprovalApprovalCriteriaRejection ApprovalApprovalCriteriaRejection ApprovalApprovalCriteriaRejection pythonsdk
python
Python
sdk
ApprovalApprovalCriteriaRejection
V2025ApprovalApprovalCriteriaRejection
/tools/sdk/python/v2025/models/approval-approval-criteria-rejection
SDK
Software Development Kit
ApprovalApprovalCriteriaRejection
V2025ApprovalApprovalCriteriaRejection

ApprovalApprovalCriteriaRejection

Criteria for rejection

Properties

Name Type Description Notes
calculation_type Enum [ 'COUNT', 'PERCENT' ] This defines what the field "value" will be used as, either a count or percentage of the total approvers that need to reject [optional]
value int The value that needs to be met for the rejection criteria [optional]
}

Example

from sailpoint.v2025.models.approval_approval_criteria_rejection import ApprovalApprovalCriteriaRejection

approval_approval_criteria_rejection = ApprovalApprovalCriteriaRejection(
calculation_type='COUNT',
value=30
)

[Back to top]