/** * * @export * @interface RenderedTerminalTransactionSummary */ export interface RenderedTerminalTransactionSummary { /** * The data property contains the binary data of the receipt document encoded as base 64 encoded string. * @type {string} * @memberof RenderedTerminalTransactionSummary */ readonly data?: string; /** * The mime type indicates the format of the receipt document. The mime type depends on the requested receipt format. * @type {string} * @memberof RenderedTerminalTransactionSummary */ readonly mimeType?: string; } /** * Check if a given object implements the RenderedTerminalTransactionSummary interface. */ export declare function instanceOfRenderedTerminalTransactionSummary(value: object): value is RenderedTerminalTransactionSummary; export declare function RenderedTerminalTransactionSummaryFromJSON(json: any): RenderedTerminalTransactionSummary; export declare function RenderedTerminalTransactionSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): RenderedTerminalTransactionSummary; export declare function RenderedTerminalTransactionSummaryToJSON(json: any): RenderedTerminalTransactionSummary; export declare function RenderedTerminalTransactionSummaryToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;