@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
34 lines (33 loc) • 882 B
TypeScript
export declare class CheckoutForwardResponseFromUrl {
/**
* The body of the response Adyen received from the third party, in string format.
*/
"body"?: string;
/**
* The HTTP headers of the response Adyen received from the third party.
*/
"headers"?: {
[key: string]: string;
};
/**
* The HTTP status of the response Adyen received from the third party.
*/
"status"?: number;
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();
}