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

1014 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-ref1 EntitlementRef1 EntitlementRef1 EntitlementRef1 pythonsdk
python
Python
sdk
EntitlementRef1
EntitlementRef1
/tools/sdk/python/v3/models/entitlement-ref1
SDK
Software Development Kit
EntitlementRef1
EntitlementRef1

EntitlementRef1

Entitlement including a specific set of access.

Properties

Name Type Description Notes
type Enum [ 'ENTITLEMENT' ] Entitlement's DTO type. [optional]
id str Entitlement's ID. [optional]
name str Entitlement's display name. [optional]
}

Example

from sailpoint.v3.models.entitlement_ref1 import EntitlementRef1

entitlement_ref1 = EntitlementRef1(
type='ENTITLEMENT',
id='2c91809773dee32014e13e122092014e',
name='CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local'
)

[Back to top]