UNPKG

@adyen/api-library

Version:

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

40 lines (39 loc) 1.3 kB
import { LoyaltyAccount } from "./loyaltyAccount"; import { POIData } from "./pOIData"; import { PaymentInstrumentData } from "./paymentInstrumentData"; import { Response } from "./response"; import { SaleData } from "./saleData"; /** * It conveys Information related to the payment and loyalty cards read and processed by the POI System and entered by the Customer. Content of the Card Acquisition Response message. */ export declare class CardAcquisitionResponse { "Response": Response; "SaleData": SaleData; "POIData": POIData; /** * Type of payment card. Brands available for payment by the card and not chosen by the Customer. */ "PaymentBrand"?: Array<string>; "PaymentInstrumentData"?: PaymentInstrumentData | null; /** * Data related to the loyalty System. */ "LoyaltyAccount"?: Array<LoyaltyAccount>; 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(); }