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

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
expression-children-inner ExpressionChildrenInner ExpressionChildrenInner ExpressionChildrenInner pythonsdk
python
Python
sdk
ExpressionChildrenInner
ExpressionChildrenInner
/tools/sdk/python/v3/models/expression-children-inner
SDK
Software Development Kit
ExpressionChildrenInner
ExpressionChildrenInner

ExpressionChildrenInner

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 str There cannot be anymore nested children. This will always be null. [optional]
}

Example

from sailpoint.v3.models.expression_children_inner import ExpressionChildrenInner

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

[Back to top]