UNPKG

@adyen/api-library

Version:

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

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