Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

File metadata and controls

32 lines (23 loc) · 1.29 KB

FormConfigurationNew

Properties

Name Type Description Notes
template_id int Template ID which is connected to the form [optional]
name str Form name [optional]
actions List[FormConfigurationNewActionsInner] Array of action configurations [optional]
fields List[FormFieldsInner] A list of form field objects [optional]

Example

from pdf_generator_api_client.models.form_configuration_new import FormConfigurationNew

# TODO update the JSON string below
json = "{}"
# create an instance of FormConfigurationNew from a JSON string
form_configuration_new_instance = FormConfigurationNew.from_json(json)
# print the JSON string representation of the object
print(FormConfigurationNew.to_json())

# convert the object into a dict
form_configuration_new_dict = form_configuration_new_instance.to_dict()
# create an instance of FormConfigurationNew from a dict
form_configuration_new_from_dict = FormConfigurationNew.from_dict(form_configuration_new_dict)

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