UNPKG

@adyen/api-library

Version:

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

35 lines (34 loc) 1.08 kB
import { OriginalPOITransaction } from "./originalPOITransaction"; import { POIData } from "./pOIData"; import { PaymentReceipt } from "./paymentReceipt"; import { Response } from "./response"; /** * It conveys Information related to the reversal processed by the POI System. Content of the Reversal Response message. */ export declare class ReversalResponse { "Response": Response; "POIData"?: POIData | null; "OriginalPOITransaction"?: OriginalPOITransaction | null; /** * Amount of the payment or loyalty to reverse. Copy. */ "ReversedAmount"?: number; "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(); }