UNPKG

@adyen/api-library

Version:

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

39 lines (38 loc) 1.1 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 discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace PaymentReversalResponse { enum StatusEnum { Received = "received" } }