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

1.4 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
beta-non-employee-request-summary NonEmployeeRequestSummary NonEmployeeRequestSummary NonEmployeeRequestSummary pythonsdk
python
Python
sdk
NonEmployeeRequestSummary
BetaNonEmployeeRequestSummary
/tools/sdk/python/beta/models/non-employee-request-summary
SDK
Software Development Kit
NonEmployeeRequestSummary
BetaNonEmployeeRequestSummary

NonEmployeeRequestSummary

Properties

Name Type Description Notes
approved float The number of approved non-employee requests on all sources that requested-for user manages. [optional]
rejected float The number of rejected non-employee requests on all sources that requested-for user manages. [optional]
pending float The number of pending non-employee requests on all sources that requested-for user manages. [optional]
non_employee_count float The number of non-employee records on all sources that requested-for user manages. [optional]
}

Example

from sailpoint.beta.models.non_employee_request_summary import NonEmployeeRequestSummary

non_employee_request_summary = NonEmployeeRequestSummary(
approved=1.337,
rejected=1.337,
pending=1.337,
non_employee_count=1.337
)

[Back to top]