wallee
Version:
TypeScript/JavaScript client for wallee
31 lines (30 loc) • 660 B
TypeScript
declare class RenderedDocument {
/**
* The binary data of the document
*/
'data'?: Array<string>;
/**
* The document's template type
*/
'documentTemplateType'?: number;
/**
* The document's content type
*/
'mimeType'?: string;
/**
* The title of the rendered document
*/
'title'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { RenderedDocument };