Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

TemplateDefinitionNewEditor

Configuration preferences for the editor

Properties

Name Type Description Notes
height_multiplier float [optional]

Example

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)

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