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,37 @@
---
id: beta-section-details
title: SectionDetails
pagination_label: SectionDetails
sidebar_label: SectionDetails
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SectionDetails', 'BetaSectionDetails']
slug: /tools/sdk/python/beta/models/section-details
tags: ['SDK', 'Software Development Kit', 'SectionDetails', 'BetaSectionDetails']
---
# SectionDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | Name of the FormItem | [optional]
**label** | **str** | Label of the section | [optional]
**form_items** | **[]object** | List of FormItems. FormItems can be SectionDetails and/or FieldDetails | [optional]
}
## Example
```python
from sailpoint.beta.models.section_details import SectionDetails
section_details = SectionDetails(
name='Field1',
label='Section 1',
form_items=[]
)
```
[[Back to top]](#)