import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetWebinarsIdInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetWebinarsIdInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetWebinarsIdInternalServerErrorData; constructor(err: GetWebinarsIdInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Webinar feature not available */ export type GetWebinarsIdForbiddenErrorData = { error?: string | undefined; }; /** * Webinar feature not available */ export declare class GetWebinarsIdForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetWebinarsIdForbiddenErrorData; constructor(err: GetWebinarsIdForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetWebinarsIdUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetWebinarsIdUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetWebinarsIdUnauthorizedErrorData; constructor(err: GetWebinarsIdUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetWebinarsIdInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetWebinarsIdForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const GetWebinarsIdUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=getwebinarsid.d.ts.map