Skip to main content

AccessItemAccountResponse

Properties

NameTypeDescriptionNotes
access_typestrthe access item type. account in this case[optional]
idstrthe access item id[optional]
native_identitystrthe native identifier used to uniquely identify an acccount[optional]
source_namestrthe name of the source[optional]
source_idstrthe id of the source[optional]
entitlement_countstrthe number of entitlements the account will create[optional]
display_namestrthe display name of the identity[optional]
}

Example

from sailpoint.v2024.models.access_item_account_response import AccessItemAccountResponse

access_item_account_response = AccessItemAccountResponse(
access_type='account',
id='2c918087763e69d901763e72e97f006f',
native_identity='dr.arden.ogahn.d',
source_name='DataScienceDataset',
source_id='2793o32dwd',
entitlement_count='12',
display_name='Dr. Arden Rogahn MD'
)

[Back to top]