Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/Entitlement1Owner.md
2025-02-20 12:59:19 -05:00

1019 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
v2024-entitlement1-owner Entitlement1Owner Entitlement1Owner Entitlement1Owner pythonsdk
python
Python
sdk
Entitlement1Owner
V2024Entitlement1Owner
/tools/sdk/python/v2024/models/entitlement1-owner
SDK
Software Development Kit
Entitlement1Owner
V2024Entitlement1Owner

Entitlement1Owner

Properties

Name Type Description Notes
id str The owner id for the entitlement [optional]
name str The owner name for the entitlement [optional]
type Enum [ 'IDENTITY' ] The type of the owner. Initially only type IDENTITY is supported [optional]
}

Example

from sailpoint.v2024.models.entitlement1_owner import Entitlement1Owner

entitlement1_owner = Entitlement1Owner(
id='2a2fdacca5e345f18bf7970cfbb8fec2',
name='identity 1',
type='IDENTITY'
)

[Back to top]