add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
---
id: v2025-form-element
title: FormElement
pagination_label: FormElement
sidebar_label: FormElement
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'FormElement', 'V2025FormElement']
slug: /tools/sdk/python/v2025/models/form-element
tags: ['SDK', 'Software Development Kit', 'FormElement', 'V2025FormElement']
---
# FormElement
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Form element identifier. | [optional]
**element_type** | **Enum** [ 'TEXT', 'TOGGLE', 'TEXTAREA', 'HIDDEN', 'PHONE', 'EMAIL', 'SELECT', 'DATE', 'SECTION', 'COLUMN_SET', 'IMAGE', 'DESCRIPTION' ] | FormElementType value. TEXT FormElementTypeText TOGGLE FormElementTypeToggle TEXTAREA FormElementTypeTextArea HIDDEN FormElementTypeHidden PHONE FormElementTypePhone EMAIL FormElementTypeEmail SELECT FormElementTypeSelect DATE FormElementTypeDate SECTION FormElementTypeSection COLUMN_SET FormElementTypeColumns IMAGE FormElementTypeImage DESCRIPTION FormElementTypeDescription | [optional]
**config** | **map[string]object** | Config object. | [optional]
**key** | **str** | Technical key. | [optional]
**validations** | [**[]FormElementValidationsSet**](form-element-validations-set) | | [optional]
}
## Example
```python
from sailpoint.v2025.models.form_element import FormElement
form_element = FormElement(
id='00000000-0000-0000-0000-000000000000',
element_type='TEXT',
config={label=Department},
key='department',
validations=[
sailpoint.v2025.models.form_element_validations_set.FormElementValidationsSet(
validation_type = 'REQUIRED', )
]
)
```
[[Back to top]](#)