Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/AccessItemAppResponse.md
2025-07-25 15:10:03 +00:00

1.2 KiB

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-access-item-app-response AccessItemAppResponse AccessItemAppResponse AccessItemAppResponse pythonsdk
python
Python
sdk
AccessItemAppResponse
V2024AccessItemAppResponse
/tools/sdk/python/v2024/models/access-item-app-response
SDK
Software Development Kit
AccessItemAppResponse
V2024AccessItemAppResponse

AccessItemAppResponse

Properties

Name Type Description Notes
id str the access item id [optional]
access_type str the access item type. entitlement in this case [optional]
display_name str the access item display name [optional]
source_name str the associated source name if it exists [optional]
app_role_id str the app role id [required]
}

Example

from sailpoint.v2024.models.access_item_app_response import AccessItemAppResponse

access_item_app_response = AccessItemAppResponse(
id='2c918087763e69d901763e72e97f006f',
access_type='app',
display_name='Display Name',
source_name='appName',
app_role_id='2c918087763e69d901763e72e97f006f'
)

[Back to top]