Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.31 KB

File metadata and controls

30 lines (21 loc) · 1.31 KB

TemplateDefinitionNewPagesInnerMargins

Properties

Name Type Description Notes
right float Page or label margin from right [optional]
bottom float Page or label margin from bottom [optional]

Example

from pdf_generator_api_client.models.template_definition_new_pages_inner_margins import TemplateDefinitionNewPagesInnerMargins

# TODO update the JSON string below
json = "{}"
# create an instance of TemplateDefinitionNewPagesInnerMargins from a JSON string
template_definition_new_pages_inner_margins_instance = TemplateDefinitionNewPagesInnerMargins.from_json(json)
# print the JSON string representation of the object
print(TemplateDefinitionNewPagesInnerMargins.to_json())

# convert the object into a dict
template_definition_new_pages_inner_margins_dict = template_definition_new_pages_inner_margins_instance.to_dict()
# create an instance of TemplateDefinitionNewPagesInnerMargins from a dict
template_definition_new_pages_inner_margins_from_dict = TemplateDefinitionNewPagesInnerMargins.from_dict(template_definition_new_pages_inner_margins_dict)

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