import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PutChannelEpisodesChannelEpisodeHashedIdInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PutChannelEpisodesChannelEpisodeHashedIdInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutChannelEpisodesChannelEpisodeHashedIdInternalServerErrorData; constructor(err: PutChannelEpisodesChannelEpisodeHashedIdInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PutChannelEpisodesChannelEpisodeHashedIdForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PutChannelEpisodesChannelEpisodeHashedIdForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutChannelEpisodesChannelEpisodeHashedIdForbiddenErrorData; constructor(err: PutChannelEpisodesChannelEpisodeHashedIdForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PutChannelEpisodesChannelEpisodeHashedIdUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PutChannelEpisodesChannelEpisodeHashedIdUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutChannelEpisodesChannelEpisodeHashedIdUnauthorizedErrorData; constructor(err: PutChannelEpisodesChannelEpisodeHashedIdUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PutChannelEpisodesChannelEpisodeHashedIdInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PutChannelEpisodesChannelEpisodeHashedIdForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PutChannelEpisodesChannelEpisodeHashedIdUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=putchannelepisodeschannelepisodehashedid.d.ts.map