--- id: v2024-entitlement-owner title: EntitlementOwner pagination_label: EntitlementOwner sidebar_label: EntitlementOwner sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'EntitlementOwner', 'V2024EntitlementOwner'] slug: /tools/sdk/python/v2024/models/entitlement-owner tags: ['SDK', 'Software Development Kit', 'EntitlementOwner', 'V2024EntitlementOwner'] --- # 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 ```python from sailpoint.v2024.models.entitlement_owner import EntitlementOwner entitlement_owner = EntitlementOwner( id='2c9180827ca885d7017ca8ce28a000eb', type='IDENTITY', name='john.doe' ) ``` [[Back to top]](#)