| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| field_type | str | [optional] | |
| type | str | [optional] | |
| value | str | [optional] | |
| font | str | [optional] | |
| is_required | bool | [optional] | |
| is_read_only | bool | [optional] | |
| line_height | int | [optional] | |
| font_size | int | [optional] | |
| font_hex_color | str | [optional] | |
| is_under_line_font | bool | [optional] | |
| is_italic_font | bool | [optional] | |
| is_bold_font | bool | [optional] | |
| group_name | str | [optional] | |
| label | str | [optional] | |
| placeholder | str | [optional] | |
| validationtype | str | [optional] | |
| validation_custom_regex | str | [optional] | |
| validation_custom_regex_message | str | [optional] | |
| date_format | str | [optional] | |
| time_format | str | [optional] | |
| image_info | ImageInfo | [optional] | |
| attachment_info | AttachmentInfo | [optional] | |
| editable_date_field_settings | EditableDateFieldSettings | [optional] | |
| dropdown_options | List[str] | [optional] | |
| bounds | Rectangle | [optional] | |
| page_number | int | [optional] | |
| conditional_rules | List[ConditionalRule] | [optional] | |
| data_sync_tag | str | [optional] | |
| text_align | str | [optional] | |
| text_direction | str | [optional] | |
| character_spacing | float | [optional] | |
| character_limit | int | [optional] | |
| hyperlink_text | str | [optional] | |
| background_hex_color | str | [optional] | |
| tab_index | int | [optional] | |
| formula_field_settings | FormulaFieldSettings | [optional] | |
| resize_option | str | [optional] | |
| allow_edit_form_field | bool | [optional] | |
| allow_delete_form_field | bool | [optional] | |
| collaboration_settings | CollaborationSettings | [optional] | |
| is_masked | bool | [optional] [default to False] |
from boldsign.models.template_form_fields import TemplateFormFields
# TODO update the JSON string below
json = "{}"
# create an instance of TemplateFormFields from a JSON string
template_form_fields_instance = TemplateFormFields.from_json(json)
# print the JSON string representation of the object
print(TemplateFormFields.to_json())
# convert the object into a dict
template_form_fields_dict = template_form_fields_instance.to_dict()
# create an instance of TemplateFormFields from a dict
template_form_fields_from_dict = TemplateFormFields.from_dict(template_form_fields_dict)