Optional display configuration shown around the form fields in the embeddable Form Builder and in the shared data collection form.
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | Form title displayed above the form | [optional] |
| intro | str | Introductory text displayed above the form fields. Supports rich text. | [optional] |
| outro | str | Closing text displayed below the form fields. Supports rich text. | [optional] |
from pdf_generator_api_client.models.form_configuration import FormConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of FormConfiguration from a JSON string
form_configuration_instance = FormConfiguration.from_json(json)
# print the JSON string representation of the object
print(FormConfiguration.to_json())
# convert the object into a dict
form_configuration_dict = form_configuration_instance.to_dict()
# create an instance of FormConfiguration from a dict
form_configuration_from_dict = FormConfiguration.from_dict(form_configuration_dict)