Skip to main content

EntitlementOwner

The identity that owns the entitlement

Properties

NameTypeDescriptionNotes
idstrThe identity ID[optional]
typeEnum [ 'IDENTITY' ]The type of object[optional]
namestrThe display name of the identity[optional]
}

Example

from sailpoint.v2024.models.entitlement_owner import EntitlementOwner

entitlement_owner = EntitlementOwner(
id='2c9180827ca885d7017ca8ce28a000eb',
type='IDENTITY',
name='john.doe'
)

[Back to top]