Skip to main content

SodExemptCriteria

Details of the Entitlement criteria

Properties

NameTypeDescriptionNotes
existingboolIf the entitlement already belonged to the user or not.[optional] [default to False]
typeDtoType[optional]
idstrEntitlement ID[optional]
namestrEntitlement name[optional]
}

Example

from sailpoint.v2024.models.sod_exempt_criteria import SodExemptCriteria

sod_exempt_criteria = SodExemptCriteria(
existing=True,
type='IDENTITY',
id='2c918085771e9d3301773b3cb66f6398',
name='My HR Entitlement'
)

[Back to top]