import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PutWebinarsIdInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PutWebinarsIdInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutWebinarsIdInternalServerErrorData; constructor(err: PutWebinarsIdInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Validation errors */ export type PutWebinarsIdUnprocessableEntityErrorData = { errors?: Array | undefined; }; /** * Validation errors */ export declare class PutWebinarsIdUnprocessableEntityError extends WistiaError { errors?: Array | undefined; /** The original data that was passed to this error instance. */ data$: PutWebinarsIdUnprocessableEntityErrorData; constructor(err: PutWebinarsIdUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Webinar feature not available */ export type PutWebinarsIdForbiddenErrorData = { error?: string | undefined; }; /** * Webinar feature not available */ export declare class PutWebinarsIdForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutWebinarsIdForbiddenErrorData; constructor(err: PutWebinarsIdForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PutWebinarsIdUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PutWebinarsIdUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutWebinarsIdUnauthorizedErrorData; constructor(err: PutWebinarsIdUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PutWebinarsIdInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PutWebinarsIdUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PutWebinarsIdForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PutWebinarsIdUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=putwebinarsid.d.ts.map