Skip to main content

NonEmployeeRequestSummary

Properties

NameTypeDescriptionNotes
approvedfloatThe number of approved non-employee requests on all sources that requested-for user manages.[optional]
rejectedfloatThe number of rejected non-employee requests on all sources that requested-for user manages.[optional]
pendingfloatThe number of pending non-employee requests on all sources that requested-for user manages.[optional]
non_employee_countfloatThe 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]