@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
46 lines (45 loc) • 1.14 kB
TypeScript
export declare class ServiceError {
/**
* Contains additional information about the payment. Some data fields are included only if you select them first. Go to **Customer Area** > **Developers** > **Additional data**.
*/
"additionalData"?: {
[]: string;
};
/**
* The error code mapped to the error message.
*/
"errorCode"?: string;
/**
* The category of the error.
*/
"errorType"?: string;
/**
* A short explanation of the issue.
*/
"message"?: string;
/**
* The PSP reference of the payment.
*/
"pspReference"?: string;
/**
* The HTTP response status.
*/
"status"?: number;
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();
}