@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
38 lines (37 loc) • 1.04 kB
TypeScript
export declare class SubmitResponse {
/**
* This field contains additional data, which may be returned in a particular response.
*/
"additionalData"?: {
[]: string;
};
/**
* A new reference to uniquely identify this request.
*/
"pspReference": string;
/**
* In case of refusal, an informational message for the reason.
*/
"refusalReason"?: string;
/**
* The response: * In case of success, it is `payout-submit-received`. * In case of an error, an informational message is returned.
*/
"resultCode": 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();
}