@doczilla/node
Version:
Doczilla API wrapper
37 lines (36 loc) • 760 B
TypeScript
import type { TemplateVariables } from './TemplateVariables';
export type Template = {
/**
* The unique identifier of the template.
*/
id: string;
/**
* The name of the template.
*/
name: string;
/**
* The output format of the template.
*/
output: Template.output;
/**
* The date and time the template was created.
*/
createdAt: string;
/**
* The date and time the template was last updated.
*/
updatedAt: string;
/**
* The variables of the template.
*/
variables: TemplateVariables;
};
export declare namespace Template {
/**
* The output format of the template.
*/
enum output {
PDF = "PDF",
IMAGE = "IMAGE"
}
}