import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error during webinar creation */ export type PostWebinarsInternalServerErrorData = { errors?: Array | undefined; }; /** * Internal server error during webinar creation */ export declare class PostWebinarsInternalServerError extends WistiaError { errors?: Array | undefined; /** The original data that was passed to this error instance. */ data$: PostWebinarsInternalServerErrorData; constructor(err: PostWebinarsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Validation errors */ export type PostWebinarsUnprocessableEntityErrorData = { errors?: Array | undefined; }; /** * Validation errors */ export declare class PostWebinarsUnprocessableEntityError extends WistiaError { errors?: Array | undefined; /** The original data that was passed to this error instance. */ data$: PostWebinarsUnprocessableEntityErrorData; constructor(err: PostWebinarsUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Webinar feature not available */ export type PostWebinarsForbiddenErrorData = { error?: string | undefined; }; /** * Webinar feature not available */ export declare class PostWebinarsForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostWebinarsForbiddenErrorData; constructor(err: PostWebinarsForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostWebinarsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostWebinarsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostWebinarsUnauthorizedErrorData; constructor(err: PostWebinarsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostWebinarsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostWebinarsUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PostWebinarsForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PostWebinarsUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=postwebinars.d.ts.map