You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Defines page specific layout which can differ from the main template layout (e.g page format, margins).
[optional]
conditional_formats
List[object]
[optional]
background_image
str
Defines background image for the page.
[optional]
Example
frompdf_generator_api_client.models.template_definition_new_pages_innerimportTemplateDefinitionNewPagesInner# TODO update the JSON string belowjson="{}"# create an instance of TemplateDefinitionNewPagesInner from a JSON stringtemplate_definition_new_pages_inner_instance=TemplateDefinitionNewPagesInner.from_json(json)
# print the JSON string representation of the objectprint(TemplateDefinitionNewPagesInner.to_json())
# convert the object into a dicttemplate_definition_new_pages_inner_dict=template_definition_new_pages_inner_instance.to_dict()
# create an instance of TemplateDefinitionNewPagesInner from a dicttemplate_definition_new_pages_inner_from_dict=TemplateDefinitionNewPagesInner.from_dict(template_definition_new_pages_inner_dict)