Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

FormFieldsInner

Form field definition

Properties

Name Type Description Notes
label str Field label displayed in the form [optional]
name str Data field name. For example "name" can be used as "{name}" in the document as placeholder. [optional]
type str Field type [optional]
required bool Specifies if the field is required or not [optional]

Example

from pdf_generator_api_client.models.form_fields_inner import FormFieldsInner

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

# convert the object into a dict
form_fields_inner_dict = form_fields_inner_instance.to_dict()
# create an instance of FormFieldsInner from a dict
form_fields_inner_from_dict = FormFieldsInner.from_dict(form_fields_inner_dict)

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