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

896 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-access-item-ref AccessItemRef AccessItemRef AccessItemRef pythonsdk
python
Python
sdk
AccessItemRef
V2025AccessItemRef
/tools/sdk/python/v2025/models/access-item-ref
SDK
Software Development Kit
AccessItemRef
V2025AccessItemRef

AccessItemRef

Properties

Name Type Description Notes
id str ID of the access item to retrieve the recommendation for. [optional]
type Enum [ 'ENTITLEMENT', 'ACCESS_PROFILE', 'ROLE' ] Access item's type. [optional]
}

Example

from sailpoint.v2025.models.access_item_ref import AccessItemRef

access_item_ref = AccessItemRef(
id='2c938083633d259901633d2623ec0375',
type='ENTITLEMENT'
)

[Back to top]