Skip to main content

Expression

Properties

NameTypeDescriptionNotes
operatorEnum [ 'AND', 'EQUALS' ]Operator for the expression[optional]
attributestrName for the attribute[optional]
valueValue[optional]
children[]ExpressionChildrenInnerList of expressions[optional]
}

Example

from sailpoint.v2024.models.expression import Expression

expression = Expression(
operator='EQUALS',
attribute='location',
value=sailpoint.v2024.models.value.Value(
type = 'STRING', ),
children=[]
)

[Back to top]