UNPKG

@doczilla/node

Version:
37 lines (35 loc) 756 B
/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type ListTemplate = { /** * The unique identifier of the template. */ id: string; /** * The name of the template. */ name: string; /** * The output format of the template. */ output: ListTemplate.output; /** * The date and time the template was created. */ createdAt: string; /** * The date and time the template was last updated. */ updatedAt: string; }; export namespace ListTemplate { /** * The output format of the template. */ export enum output { PDF = 'PDF', IMAGE = 'IMAGE', } }