UNPKG

@adyen/api-library

Version:

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

36 lines (35 loc) 1.12 kB
import { LoyaltyResult } from "./loyaltyResult"; import { POIData } from "./pOIData"; import { PaymentReceipt } from "./paymentReceipt"; import { Response } from "./response"; import { SaleData } from "./saleData"; /** * It conveys Information related to the Loyalty transaction processed by the POI System. Content of the Loyalty Response message. */ export declare class LoyaltyResponse { "Response": Response; "SaleData": SaleData; "POIData": POIData; /** * Data related to the result of a processed loyalty transaction. If loyalty account identified. */ "LoyaltyResult"?: Array<LoyaltyResult>; "PaymentReceipt"?: Array<PaymentReceipt>; 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(); }