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

NameTypeDescriptionNotes
labelstrField label displayed in the form[optional]
namestrData field name. For example "name" can be used as "{name}" in the document as placeholder.[optional]
typestrField type[optional]
requiredboolSpecifies if the field is required or not[optional]

Example

frompdf_generator_api_client.models.form_fields_innerimportFormFieldsInner# TODO update the JSON string belowjson="{}"# create an instance of FormFieldsInner from a JSON stringform_fields_inner_instance=FormFieldsInner.from_json(json)
# print the JSON string representation of the objectprint(FormFieldsInner.to_json())
# convert the object into a dictform_fields_inner_dict=form_fields_inner_instance.to_dict()
# create an instance of FormFieldsInner from a dictform_fields_inner_from_dict=FormFieldsInner.from_dict(form_fields_inner_dict)

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