Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.28 KB

File metadata and controls

32 lines (23 loc) · 1.28 KB

FormConfiguration

Optional display configuration shown around the form fields in the embeddable Form Builder and in the shared data collection form.

Properties

NameTypeDescriptionNotes
titlestrForm title displayed above the form[optional]
introstrIntroductory text displayed above the form fields. Supports rich text.[optional]
outrostrClosing text displayed below the form fields. Supports rich text.[optional]

Example

frompdf_generator_api_client.models.form_configurationimportFormConfiguration# TODO update the JSON string belowjson="{}"# create an instance of FormConfiguration from a JSON stringform_configuration_instance=FormConfiguration.from_json(json)
# print the JSON string representation of the objectprint(FormConfiguration.to_json())
# convert the object into a dictform_configuration_dict=form_configuration_instance.to_dict()
# create an instance of FormConfiguration from a dictform_configuration_from_dict=FormConfiguration.from_dict(form_configuration_dict)

[Back to Model list][Back to API list][Back to README]