Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/NonEmployeeRequestLite.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-request-lite NonEmployeeRequestLite NonEmployeeRequestLite NonEmployeeRequestLite pythonsdk
python
Python
sdk
NonEmployeeRequestLite
NonEmployeeRequestLite
/tools/sdk/python/v3/models/non-employee-request-lite
SDK
Software Development Kit
NonEmployeeRequestLite
NonEmployeeRequestLite

NonEmployeeRequestLite

Properties

Name Type Description Notes
id str Non-Employee request id. [optional]
requester NonEmployeeIdentityReferenceWithId [optional]
}

Example

from sailpoint.v3.models.non_employee_request_lite import NonEmployeeRequestLite

non_employee_request_lite = NonEmployeeRequestLite(
id='ac110005-7156-1150-8171-5b292e3e0084',
requester=sailpoint.v3.models.non_employee_identity_reference_with_id.NonEmployeeIdentityReferenceWithId(
                    type = 'IDENTITY', 
                    id = '5168015d32f890ca15812c9180835d2e', )
)

[Back to top]