Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/SectionDetails.md
2025-02-20 12:59:19 -05:00

927 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-section-details SectionDetails SectionDetails SectionDetails pythonsdk
python
Python
sdk
SectionDetails
V2024SectionDetails
/tools/sdk/python/v2024/models/section-details
SDK
Software Development Kit
SectionDetails
V2024SectionDetails

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

from sailpoint.v2024.models.section_details import SectionDetails

section_details = SectionDetails(
name='Field1',
label='Section 1',
form_items=[]
)

[Back to top]