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

NonEmployeeRequestLite

Properties

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

Example

from sailpoint.beta.models.non_employee_request_lite import NonEmployeeRequestLite

non_employee_request_lite = NonEmployeeRequestLite(
id='ac10e21c-931c-1ef2-8193-1c51e7ff0003',
requester=sailpoint.beta.models.identity_reference_with_id.IdentityReferenceWithId(
                    type = 'IDENTITY', 
                    id = '5168015d32f890ca15812c9180835d2e', )
)

[Back to top]