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 | []Children | List of expressions | [optional] |
} |
Example
from sailpoint.beta.models.expression import Expression
expression = Expression(
operator='EQUALS',
attribute='location',
value=sailpoint.beta.models.value.Value(
type = 'STRING', ),
children=[]
)