Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/UserAppSource.md
2025-02-20 12:59:19 -05:00

874 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-user-app-source UserAppSource UserAppSource UserAppSource pythonsdk
python
Python
sdk
UserAppSource
V2024UserAppSource
/tools/sdk/python/v2024/models/user-app-source
SDK
Software Development Kit
UserAppSource
V2024UserAppSource

UserAppSource

Properties

Name Type Description Notes
id str the source ID [optional]
type str It will always be "SOURCE" [optional]
name str the source name [optional]
}

Example

from sailpoint.v2024.models.user_app_source import UserAppSource

user_app_source = UserAppSource(
id='9870808a7190d06e01719938fcd20792',
type='SOURCE',
name='test-source'
)

[Back to top]