Skip to main content

IdentityEntitlementDetailsEntitlementDto

Properties

NameTypeDescriptionNotes
idstrThe entitlement id[optional]
namestrThe entitlement name[optional]
createddatetimeTime when the entitlement was last modified[optional]
modifieddatetimeTime when the entitlement was last modified[optional]
descriptionstrThe description of the entitlement[optional]
typestrThe type of the object, will always be "ENTITLEMENT"[optional]
source_idstrThe source ID[optional]
source_namestrThe source name[optional]
ownerOwnerDto[optional]
valuestrThe value of the entitlement[optional]
flags[]stra list of properties informing the viewer about the entitlement[optional]
}

Example

from sailpoint.v2025.models.identity_entitlement_details_entitlement_dto import IdentityEntitlementDetailsEntitlementDto

identity_entitlement_details_entitlement_dto = IdentityEntitlementDetailsEntitlementDto(
id='2c91808874ff91550175097daaec161c',
name='LauncherTest2',
created='2020-10-08T18:33:52.029Z',
modified='2020-10-08T18:33:52.029Z',
description='CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local',
type='ENTITLEMENT',
source_id='2c9180827ca885d7017ca8ce28a000eb',
source_name='ODS-AD-Source',
owner=sailpoint.v2025.models.owner_dto.OwnerDto(
type = 'IDENTITY',
id = '2c9180a46faadee4016fb4e018c20639',
name = 'Support', ),
value='CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local',
flags=[privileged]
)

[Back to top]