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

894 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-account UserAppAccount UserAppAccount UserAppAccount pythonsdk
python
Python
sdk
UserAppAccount
V2024UserAppAccount
/tools/sdk/python/v2024/models/user-app-account
SDK
Software Development Kit
UserAppAccount
V2024UserAppAccount

UserAppAccount

Properties

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

Example

from sailpoint.v2024.models.user_app_account import UserAppAccount

user_app_account = UserAppAccount(
id='85d173e7d57e496569df763231d6deb6a',
type='ACCOUNT',
name='test account'
)

[Back to top]