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

820 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
beta-section Section Section Section pythonsdk
python
Python
sdk
Section
BetaSection
/tools/sdk/python/beta/models/section
SDK
Software Development Kit
Section
BetaSection

Section

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.beta.models.section import Section

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

[Back to top]