Skip to main content

Section

Properties

NameTypeDescriptionNotes
namestrName of the FormItem[optional]
labelstrLabel of the section[optional]
form_items[]objectList 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]