Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/UserAppOwner.md
2025-02-20 12:59:19 -05: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
v2024-user-app-owner UserAppOwner UserAppOwner UserAppOwner pythonsdk
python
Python
sdk
UserAppOwner
V2024UserAppOwner
/tools/sdk/python/v2024/models/user-app-owner
SDK
Software Development Kit
UserAppOwner
V2024UserAppOwner

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.v2024.models.user_app_owner import UserAppOwner

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

[Back to top]