import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetChannelsChannelHashedIdChannelEpisodesInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetChannelsChannelHashedIdChannelEpisodesInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetChannelsChannelHashedIdChannelEpisodesInternalServerErrorData; constructor(err: GetChannelsChannelHashedIdChannelEpisodesInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetChannelsChannelHashedIdChannelEpisodesUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetChannelsChannelHashedIdChannelEpisodesUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetChannelsChannelHashedIdChannelEpisodesUnauthorizedErrorData; constructor(err: GetChannelsChannelHashedIdChannelEpisodesUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type GetChannelsChannelHashedIdChannelEpisodesBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class GetChannelsChannelHashedIdChannelEpisodesBadRequestError extends WistiaError { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetChannelsChannelHashedIdChannelEpisodesBadRequestErrorData; constructor(err: GetChannelsChannelHashedIdChannelEpisodesBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetChannelsChannelHashedIdChannelEpisodesInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetChannelsChannelHashedIdChannelEpisodesUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const GetChannelsChannelHashedIdChannelEpisodesBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=getchannelschannelhashedidchannelepisodes.d.ts.map