Skip to main content

AccessItemRoleResponse

Properties

NameTypeDescriptionNotes
access_typestrthe access item type. role in this case[optional]
idstrthe access item id[optional]
display_namestrthe role display name[optional]
descriptionstrthe description for the role[optional]
source_namestrthe associated source name if it exists[optional]
remove_datestrthe date the role is no longer assigned to the specified identity[optional]
revocableboolindicates whether the role is revocable[required]
}

Example

from sailpoint.v2024.models.access_item_role_response import AccessItemRoleResponse

access_item_role_response = AccessItemRoleResponse(
access_type='role',
id='2c918087763e69d901763e72e97f006f',
display_name='sample',
description='Role - Workday/Citizenship access',
source_name='Source Name',
remove_date='2024-07-01T06:00:00.00Z',
revocable=True
)

[Back to top]