Skip to main content

UserAppOwner

Properties

NameTypeDescriptionNotes
idstrThe identity ID[optional]
typestrIt will always be "IDENTITY"[optional]
namestrThe identity name[optional]
aliasstrThe identity alias[optional]
}

Example

from sailpoint.beta.models.user_app_owner import UserAppOwner

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

[Back to top]