Skip to main content

EntitlementV2Owner

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.entitlements.models.entitlement_v2_owner import EntitlementV2Owner

entitlement_v2_owner = EntitlementV2Owner(
id='2c9180827ca885d7017ca8ce28a000eb',
type='IDENTITY',
name='john.doe'
)

[Back to top]