@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
34 lines (33 loc) • 1.07 kB
TypeScript
export declare class ModifyResponse {
/**
* This field contains additional data, which may be returned in a particular response.
*/
"additionalData"?: {
[]: string;
};
/**
* Adyen\'s 16-character string reference associated with the transaction. This value is globally unique; quote it when communicating with us about this response.
*/
"pspReference": string;
/**
* The response: * In case of success, it is either `payout-confirm-received` or `payout-decline-received`. * In case of an error, an informational message is returned.
*/
"response": string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: 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();
}