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

934 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-owner UserAppOwner UserAppOwner UserAppOwner pythonsdk
python
Python
sdk
UserAppOwner
V2025UserAppOwner
/tools/sdk/python/v2025/models/user-app-owner
SDK
Software Development Kit
UserAppOwner
V2025UserAppOwner

UserAppOwner

Properties

Name Type Description Notes
id str The identity ID [optional]
type str It will always be "IDENTITY" [optional]
name str The identity name [optional]
alias str The identity alias [optional]
}

Example

from sailpoint.v2025.models.user_app_owner import UserAppOwner

user_app_owner = UserAppOwner(
id='2c9180827ca885d7017ca8ce28a000eb',
type='IDENTITY',
name='John',
alias='John.Doe'
)

[Back to top]