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

935 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
v2025-user-app-source-app UserAppSourceApp UserAppSourceApp UserAppSourceApp pythonsdk
python
Python
sdk
UserAppSourceApp
V2025UserAppSourceApp
/tools/sdk/python/v2025/models/user-app-source-app
SDK
Software Development Kit
UserAppSourceApp
V2025UserAppSourceApp

UserAppSourceApp

Properties

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

Example

from sailpoint.v2025.models.user_app_source_app import UserAppSourceApp

user_app_source_app = UserAppSourceApp(
id='edcb0951812949d085b60cd8bf35bc78',
type='APPLICATION',
name='test-app'
)

[Back to top]