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(); }