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:
40
docs/tools/sdk/python/Reference/V2024/Models/Expression.md
Normal file
40
docs/tools/sdk/python/Reference/V2024/Models/Expression.md
Normal file
@@ -0,0 +1,40 @@
|
||||
---
|
||||
id: v2024-expression
|
||||
title: Expression
|
||||
pagination_label: Expression
|
||||
sidebar_label: Expression
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'Expression', 'V2024Expression']
|
||||
slug: /tools/sdk/python/v2024/models/expression
|
||||
tags: ['SDK', 'Software Development Kit', 'Expression', 'V2024Expression']
|
||||
---
|
||||
|
||||
# Expression
|
||||
|
||||
|
||||
## 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** | [**[]ExpressionChildrenInner**](expression-children-inner) | List of expressions | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.models.expression import Expression
|
||||
|
||||
expression = Expression(
|
||||
operator='EQUALS',
|
||||
attribute='location',
|
||||
value=sailpoint.v2024.models.value.Value(
|
||||
type = 'STRING', ),
|
||||
children=[]
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user