Configuration preferences for the editor
| Name | Type | Description | Notes |
|---|---|---|---|
| height_multiplier | float | [optional] |
from pdf_generator_api_client.models.template_definition_new_editor import TemplateDefinitionNewEditor
# TODO update the JSON string below
json = "{}"
# create an instance of TemplateDefinitionNewEditor from a JSON string
template_definition_new_editor_instance = TemplateDefinitionNewEditor.from_json(json)
# print the JSON string representation of the object
print(TemplateDefinitionNewEditor.to_json())
# convert the object into a dict
template_definition_new_editor_dict = template_definition_new_editor_instance.to_dict()
# create an instance of TemplateDefinitionNewEditor from a dict
template_definition_new_editor_from_dict = TemplateDefinitionNewEditor.from_dict(template_definition_new_editor_dict)