Skip to main content

IdentityProfileAllOfOwner

Identity profile's owner.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Owner's object type.[optional]
idstrOwner's ID.[optional]
namestrOwner's name.[optional]
}

Example

from sailpoint.beta.models.identity_profile_all_of_owner import IdentityProfileAllOfOwner

identity_profile_all_of_owner = IdentityProfileAllOfOwner(
type='IDENTITY',
id='2c9180835d191a86015d28455b4b232a',
name='William Wilson'
)

[Back to top]