Name | Type | Description | Notes |
---|---|---|---|
id | Integer | Unique identifier | [optional] |
name | String | Template name | [optional] |
tags | Array<String> | A list of tags assigned to a template | [optional] |
is_draft | Boolean | Indicates if the template is a draft or published. | [optional] |
layout | TemplateDefinitionNewLayout | [optional] | |
pages | Array<TemplateDefinitionPagesInner> | Defines page or label size, margins and components on page or label | [optional] |
data_settings | TemplateDefinitionDataSettings | [optional] | |
editor | TemplateDefinitionEditor | [optional] |
require 'pdf_generator_api_client'
instance = PDFGeneratorAPI::TemplateDefinition.new(
id: 19375,
name: Invoice template,
tags: ["invoice","orders"],
is_draft: true,
layout: null,
pages: null,
data_settings: null,
editor: null
)