Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/EntitlementOwner.md
2025-03-10 11:34:32 -04:00

955 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
entitlement-owner EntitlementOwner EntitlementOwner EntitlementOwner pythonsdk
python
Python
sdk
EntitlementOwner
EntitlementOwner
/tools/sdk/python/v3/models/entitlement-owner
SDK
Software Development Kit
EntitlementOwner
EntitlementOwner

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.v3.models.entitlement_owner import EntitlementOwner

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

[Back to top]