UNPKG

@adyen/api-library

Version:

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

36 lines (35 loc) 1.23 kB
import { POIData } from "./pOIData"; import { PaymentReceipt } from "./paymentReceipt"; import { Response } from "./response"; import { SaleData } from "./saleData"; import { StoredValueResult } from "./storedValueResult"; /** * It conveys Information related to the Stored Value transaction processed by the POI System. Content of the Stored Value Response message. */ export declare class StoredValueResponse { "Response": Response; "SaleData": SaleData; "POIData": POIData; /** * Result of loading/reloading a stored value card. If StoredValueResponse.Result is Success or Partial, one entry per StoredValueRequest.StoredValueData loaded or activated. */ "StoredValueResult"?: Array<StoredValueResult>; "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(); }