import * as z from "zod"; import * as models from "../index.js"; import { SupertoneError } from "./supertoneerror.js"; export type PaymentRequiredErrorResponseData = { /** * Response status */ status: string; /** * Payment required error details */ message: models.PaymentRequiredErrorResponseMessage; }; export declare class PaymentRequiredErrorResponse extends SupertoneError { /** * Response status */ status: string; /** The original data that was passed to this error instance. */ data$: PaymentRequiredErrorResponseData; constructor(err: PaymentRequiredErrorResponseData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PaymentRequiredErrorResponse$inboundSchema: z.ZodType; /** @internal */ export type PaymentRequiredErrorResponse$Outbound = { status: string; message: models.PaymentRequiredErrorResponseMessage$Outbound; }; /** @internal */ export declare const PaymentRequiredErrorResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PaymentRequiredErrorResponse$ { /** @deprecated use `PaymentRequiredErrorResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentRequiredErrorResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentRequiredErrorResponse$Outbound` instead. */ type Outbound = PaymentRequiredErrorResponse$Outbound; } //# sourceMappingURL=paymentrequirederrorresponse.d.ts.map