wallee
Version:
TypeScript/JavaScript client for wallee
23 lines (22 loc) • 688 B
TypeScript
declare class RenderedTerminalTransactionSummary {
/**
* The data property contains the binary data of the receipt document encoded as base 64 encoded string.
*/
'data'?: Array<string>;
/**
* The mime type indicates the format of the receipt document. The mime type depends on the requested receipt format.
*/
'mimeType'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { RenderedTerminalTransactionSummary };