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.apps.models.userapp_owner import UserappOwner

userapp_owner = UserappOwner(
id='2c9180827ca885d7017ca8ce28a000eb',
type='IDENTITY',
name='John',
alias='John.Doe'
)

[Back to top]