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,39 @@
---
id: v2025-form-definition-input
title: FormDefinitionInput
pagination_label: FormDefinitionInput
sidebar_label: FormDefinitionInput
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'FormDefinitionInput', 'V2025FormDefinitionInput']
slug: /tools/sdk/python/v2025/models/form-definition-input
tags: ['SDK', 'Software Development Kit', 'FormDefinitionInput', 'V2025FormDefinitionInput']
---
# FormDefinitionInput
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Unique identifier for the form input. | [optional]
**type** | **Enum** [ 'STRING', 'ARRAY' ] | FormDefinitionInputType value. STRING FormDefinitionInputTypeString | [optional]
**label** | **str** | Name for the form input. | [optional]
**description** | **str** | Form input's description. | [optional]
}
## Example
```python
from sailpoint.v2025.models.form_definition_input import FormDefinitionInput
form_definition_input = FormDefinitionInput(
id='00000000-0000-0000-0000-000000000000',
type='STRING',
label='input1',
description='A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic'
)
```
[[Back to top]](#)