Skip to main content

ExpressionChildrenInner

Properties

NameTypeDescriptionNotes
operatorEnum [ 'AND', 'EQUALS' ]Operator for the expression[optional]
attributestrName for the attribute[optional]
valueValue[optional]
childrenstrThere cannot be anymore nested children. This will always be null.[optional]
}

Example

from sailpoint.v2024.models.expression_children_inner import ExpressionChildrenInner

expression_children_inner = ExpressionChildrenInner(
operator='EQUALS',
attribute='location',
value=sailpoint.v2024.models.value.Value(
type = 'STRING', ),
children=''
)

[Back to top]