UNPKG

@adyen/api-library

Version:

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

45 lines (44 loc) 1.27 kB
export declare class PaymentReversalResponse { /** * The merchant account that is used to process the payment. */ "merchantAccount": string; /** * The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment to reverse. */ "paymentPspReference": string; /** * Adyen\'s 16-character reference associated with the reversal request. */ "pspReference": string; /** * Your reference for the reversal request. */ "reference"?: string; /** * The status of your request. This will always have the value **received**. */ "status": PaymentReversalResponse.StatusEnum; 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 PaymentReversalResponse { enum StatusEnum { Received = "received" } }