UNPKG

@adyen/api-library

Version:

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

33 lines (32 loc) 941 B
export declare class CancelOrderResponse { /** * A unique reference of the cancellation request. */ "pspReference": string; /** * The result of the cancellation request. Possible values: * **Received** – Indicates the cancellation has successfully been received by Adyen, and will be processed. */ "resultCode": CancelOrderResponse.ResultCodeEnum; 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 CancelOrderResponse { enum ResultCodeEnum { Received = "Received" } }