UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

37 lines (36 loc) 1.15 kB
import { DocumentQualifier } from "./documentQualifier"; import { OutputContent } from "./outputContent"; /** * Customer or Merchant payment receipt. If the payment receipts are printed by the Sale system and the POI or the Sale does not implement the Print exchange (Basic profile). */ export declare class PaymentReceipt { "DocumentQualifier": DocumentQualifier; /** * Type of the print integrated to other prints. */ "IntegratedPrintFlag"?: boolean; /** * Indicate that the cardholder payment receipt requires a physical signature by the Customer. */ "RequiredSignatureFlag"?: boolean; "OutputContent": OutputContent; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace PaymentReceipt { }