mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
---
|
||||
id: v2024-expression-children-inner
|
||||
title: ExpressionChildrenInner
|
||||
pagination_label: ExpressionChildrenInner
|
||||
sidebar_label: ExpressionChildrenInner
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'ExpressionChildrenInner', 'V2024ExpressionChildrenInner']
|
||||
slug: /tools/sdk/python/v2024/models/expression-children-inner
|
||||
tags: ['SDK', 'Software Development Kit', 'ExpressionChildrenInner', 'V2024ExpressionChildrenInner']
|
||||
---
|
||||
|
||||
# ExpressionChildrenInner
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**operator** | **Enum** [ 'AND', 'EQUALS' ] | Operator for the expression | [optional]
|
||||
**attribute** | **str** | Name for the attribute | [optional]
|
||||
**value** | [**Value**](value) | | [optional]
|
||||
**children** | **str** | There cannot be anymore nested children. This will always be null. | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
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=''
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user