Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/EntitlementOwner.md
2025-04-01 09:23:12 -04:00

977 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-entitlement-owner EntitlementOwner EntitlementOwner EntitlementOwner pythonsdk
python
Python
sdk
EntitlementOwner
V2025EntitlementOwner
/tools/sdk/python/v2025/models/entitlement-owner
SDK
Software Development Kit
EntitlementOwner
V2025EntitlementOwner

EntitlementOwner

The identity that owns the entitlement

Properties

Name Type Description Notes
id str The identity ID [optional]
type Enum [ 'IDENTITY' ] The type of object [optional]
name str The display name of the identity [optional]
}

Example

from sailpoint.v2025.models.entitlement_owner import EntitlementOwner

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

[Back to top]