Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/NonEmployeeSourceLite.md
2025-04-01 09:23:12 -04:00

1.2 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
v2025-non-employee-source-lite NonEmployeeSourceLite NonEmployeeSourceLite NonEmployeeSourceLite pythonsdk
python
Python
sdk
NonEmployeeSourceLite
V2025NonEmployeeSourceLite
/tools/sdk/python/v2025/models/non-employee-source-lite
SDK
Software Development Kit
NonEmployeeSourceLite
V2025NonEmployeeSourceLite

NonEmployeeSourceLite

Properties

Name Type Description Notes
id str Non-Employee source id. [optional]
source_id str Source Id associated with this non-employee source. [optional]
name str Source name associated with this non-employee source. [optional]
description str Source description associated with this non-employee source. [optional]
}

Example

from sailpoint.v2025.models.non_employee_source_lite import NonEmployeeSourceLite

non_employee_source_lite = NonEmployeeSourceLite(
id='a0303682-5e4a-44f7-bdc2-6ce6112549c1',
source_id='2c91808568c529c60168cca6f90c1313',
name='Retail',
description='Source description'
)

[Back to top]