| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | Unique identifier | [optional] |
| name | str | Template name | [optional] |
| tags | List[str] | A list of tags assigned to a template | [optional] |
| is_draft | bool | Indicates if the template is a draft or published. | [optional] |
| layout | TemplateDefinitionNewLayout | [optional] | |
| pages | List[TemplateDefinitionPagesInner] | Defines page or label size, margins and components on page or label | [optional] |
| data_settings | TemplateDefinitionDataSettings | [optional] | |
| editor | TemplateDefinitionEditor | [optional] |
frompdf_generator_api_client.models.template_definitionimportTemplateDefinition# TODO update the JSON string belowjson="{}"# create an instance of TemplateDefinition from a JSON stringtemplate_definition_instance=TemplateDefinition.from_json(json)
# print the JSON string representation of the objectprint(TemplateDefinition.to_json())
# convert the object into a dicttemplate_definition_dict=template_definition_instance.to_dict()
# create an instance of TemplateDefinition from a dicttemplate_definition_from_dict=TemplateDefinition.from_dict(template_definition_dict)