Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/Expression.md
2025-02-20 12:59:19 -05:00

1000 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-expression Expression Expression Expression pythonsdk
python
Python
sdk
Expression
BetaExpression
/tools/sdk/python/beta/models/expression
SDK
Software Development Kit
Expression
BetaExpression

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=[]
)

[Back to top]