Form field definition
| 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] |
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)