wallee
Version:
TypeScript/JavaScript client for wallee
28 lines (27 loc) • 935 B
TypeScript
import { TerminalReceiptFormat } from "./TerminalReceiptFormat";
declare class PaymentTerminalTransactionSummaryFetchRequest {
/**
* The format determines in what format the receipt will be returned in.
*/
'format': TerminalReceiptFormat;
/**
* The id of the transaction summary receipt whose content should be returned.
*/
'summaryId': number;
/**
* The width controls how width the document will be rendered. In case of the PDF format the width is in mm. In case of the text format the width is in the number of chars per line.
*/
'width'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { PaymentTerminalTransactionSummaryFetchRequest };