Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.38 KB

File metadata and controls

33 lines (24 loc) · 1.38 KB

FormConfigurationNew

Properties

NameTypeDescriptionNotes
template_idintTemplate ID which is connected to the form[optional]
namestrForm name[optional]
actionsList[FormConfigurationNewActionsInner]Array of action configurations[optional]
fieldsList[FormFieldsInner]A list of form field objects[optional]
configurationFormConfiguration[optional]

Example

frompdf_generator_api_client.models.form_configuration_newimportFormConfigurationNew# TODO update the JSON string belowjson="{}"# create an instance of FormConfigurationNew from a JSON stringform_configuration_new_instance=FormConfigurationNew.from_json(json)
# print the JSON string representation of the objectprint(FormConfigurationNew.to_json())
# convert the object into a dictform_configuration_new_dict=form_configuration_new_instance.to_dict()
# create an instance of FormConfigurationNew from a dictform_configuration_new_from_dict=FormConfigurationNew.from_dict(form_configuration_new_dict)

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