mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.2 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-expression-children-inner | ExpressionChildrenInner | ExpressionChildrenInner | ExpressionChildrenInner | pythonsdk |
|
/tools/sdk/python/v2024/models/expression-children-inner |
|
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.v2024.models.expression_children_inner import ExpressionChildrenInner
expression_children_inner = ExpressionChildrenInner(
operator='EQUALS',
attribute='location',
value=sailpoint.v2024.models.value.Value(
type = 'STRING', ),
children=''
)