Expression
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| operator | Enum [ 'AND', 'EQUALS' ] | Operator for the expression | [optional] |
| attribute | str | Name for the attribute | [optional] |
| value | Value | [optional] | |
| children | []ExpressionChildrenInner | List of expressions | [optional] |
| } |
Example
from sailpoint.v2025.models.expression import Expression
expression = Expression(
operator='EQUALS',
attribute='location',
value=sailpoint.v2025.models.value.Value(
type = 'STRING', ),
children=[]
)