UNPKG

wallee

Version:
40 lines (39 loc) 980 B
import { DocumentTemplateTypeGroup } from "./DocumentTemplateTypeGroup"; declare class DocumentTemplateType { /** * The localized description of the document template type. */ 'description'?: { [key: string]: string; }; /** * The feature that this document template type belongs to. */ 'feature'?: number; /** * The group that this document template type belongs to. */ 'group'?: DocumentTemplateTypeGroup; /** * A unique identifier for the object. */ 'id'?: number; /** * The localized title of the document template type. */ 'title'?: { [key: string]: string; }; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { DocumentTemplateType };