Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/NonEmployeeApprovalSummary.md
2025-02-20 12:59:19 -05:00

1.1 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
non-employee-approval-summary NonEmployeeApprovalSummary NonEmployeeApprovalSummary NonEmployeeApprovalSummary pythonsdk
python
Python
sdk
NonEmployeeApprovalSummary
NonEmployeeApprovalSummary
/tools/sdk/python/v3/models/non-employee-approval-summary
SDK
Software Development Kit
NonEmployeeApprovalSummary
NonEmployeeApprovalSummary

NonEmployeeApprovalSummary

Properties

Name Type Description Notes
approved int The number of approved non-employee approval requests. [optional]
pending int The number of pending non-employee approval requests. [optional]
rejected int The number of rejected non-employee approval requests. [optional]
}

Example

from sailpoint.v3.models.non_employee_approval_summary import NonEmployeeApprovalSummary

non_employee_approval_summary = NonEmployeeApprovalSummary(
approved=2,
pending=2,
rejected=2
)

[Back to top]