mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
1.2 KiB
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 |
|
/tools/sdk/python/v2025/models/approval-approval-criteria-rejection |
|
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
)