Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/NonEmployeeSourceLite.md
2025-02-20 12:59:19 -05: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
beta-non-employee-source-lite NonEmployeeSourceLite NonEmployeeSourceLite NonEmployeeSourceLite pythonsdk
python
Python
sdk
NonEmployeeSourceLite
BetaNonEmployeeSourceLite
/tools/sdk/python/beta/models/non-employee-source-lite
SDK
Software Development Kit
NonEmployeeSourceLite
BetaNonEmployeeSourceLite

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.beta.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]