import * as z from "zod"; /** * Payment Required */ export type PaymentRequiredResponseData = { /** * HTTP status code */ statusCode?: number | undefined; /** * Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231) */ error?: string | undefined; /** * The type of error returned */ typeName?: string | undefined; /** * A human-readable message providing more details about the error. */ message?: string | undefined; /** * Contains parameter or domain specific information related to the error and why it occurred. */ detail?: string | undefined; /** * Link to documentation of error type */ ref?: string | undefined; }; /** * Payment Required */ export declare class PaymentRequiredResponse extends Error { /** * HTTP status code */ statusCode?: number | undefined; /** * Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231) */ error?: string | undefined; /** * The type of error returned */ typeName?: string | undefined; /** * Contains parameter or domain specific information related to the error and why it occurred. */ detail?: string | undefined; /** * Link to documentation of error type */ ref?: string | undefined; /** The original data that was passed to this error instance. */ data$: PaymentRequiredResponseData; constructor(err: PaymentRequiredResponseData); } /** @internal */ export declare const PaymentRequiredResponse$inboundSchema: z.ZodType; /** @internal */ export type PaymentRequiredResponse$Outbound = { status_code?: number | undefined; error?: string | undefined; type_name?: string | undefined; message?: string | undefined; detail?: string | undefined; ref?: string | undefined; }; /** @internal */ export declare const PaymentRequiredResponse$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 PaymentRequiredResponse$ { /** @deprecated use `PaymentRequiredResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PaymentRequiredResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PaymentRequiredResponse$Outbound` instead. */ type Outbound = PaymentRequiredResponse$Outbound; } //# sourceMappingURL=paymentrequiredresponse.d.ts.map