Interface PDFTemplateBlueprint

It represents the blueprint that defines how the PDF template is structured, based on the project's data.

interface PDFTemplateBlueprint {
    description: string;
    innerBlueprints?: PDFTemplateSectionBlueprint[];
    variables: LabelVariable[];
}

Hierarchy (view full)

Properties

description: string

A description to identify the templates of this blueprint.

innerBlueprints?: PDFTemplateSectionBlueprint[]

The blueprints of inner sections.

variables: LabelVariable[]

The variables available in templates of this blueprint.