starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,33 @@
---
id: form-item-details
title: FormItemDetails
pagination_label: FormItemDetails
sidebar_label: FormItemDetails
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'FormItemDetails', 'FormItemDetails']
slug: /tools/sdk/python/v3/models/form-item-details
tags: ['SDK', 'Software Development Kit', 'FormItemDetails', 'FormItemDetails']
---
# FormItemDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | Name of the FormItem | [optional]
}
## Example
```python
from sailpoint.v3.models.form_item_details import FormItemDetails
form_item_details = FormItemDetails(
name='Field1'
)
```
[[Back to top]](#)