Skip to main content

IdentityEntitlementDetailsAccountTarget

Properties

NameTypeDescriptionNotes
account_idstrThe id of account[optional]
account_namestrThe name of account[optional]
account_uuidstrThe UUID representation of the account if available[optional]
source_idstrThe id of Source[optional]
source_namestrThe name of Source[optional]
remove_datestrThe removal date scheduled for the entitlement on the Identity[optional]
assignment_idstrThe assignmentId of the entitlement on the Identity[optional]
revocableboolIf the entitlement can be revoked[optional] [default to False]
}

Example

from sailpoint.v2025.models.identity_entitlement_details_account_target import IdentityEntitlementDetailsAccountTarget

identity_entitlement_details_account_target = IdentityEntitlementDetailsAccountTarget(
account_id='c5ef070e-92c6-4276-a006-98490f132dec',
account_name='Adalberto.XYZ',
account_uuid='2236c29e-68a6-494d-a469-d072172f46cf',
source_id='9269d764-8358-4ab9-9748-d4b7418548ca',
source_name='JDBC XYZ Source',
remove_date='2035-01-01T12:00:00.000Z',
assignment_id='77a5b7b4-262f-4b6a-a2aa-87f84f45f96f',
revocable=True
)

[Back to top]