wallee
Version:
TypeScript/JavaScript client for wallee
40 lines (39 loc) • 980 B
TypeScript
import { DocumentTemplateTypeGroup } from "./DocumentTemplateTypeGroup";
declare class DocumentTemplateType {
/**
* The localized description of the document template type.
*/
'description'?: {
[]: 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'?: {
[]: string;
};
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { DocumentTemplateType };