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

1.3 KiB

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-form-details FormDetails FormDetails FormDetails pythonsdk
python
Python
sdk
FormDetails
V2024FormDetails
/tools/sdk/python/v2024/models/form-details
SDK
Software Development Kit
FormDetails
V2024FormDetails

FormDetails

Properties

Name Type Description Notes
id str ID of the form [optional]
name str Name of the form [optional]
title str The form title [optional]
subtitle str The form subtitle. [optional]
target_user str The name of the user that should be shown this form [optional]
sections []SectionDetails Sections of the form [optional]
}

Example

from sailpoint.v2024.models.form_details import FormDetails

form_details = FormDetails(
id='2c9180835d2e5168015d32f890ca1581',
name='AccountSelection Form',
title='Account Selection for John.Doe',
subtitle='Please select from the following',
target_user='Jane.Doe',
sections=[
                    sailpoint.v2024.models.section_details.SectionDetails()
                    ]
)

[Back to top]