import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetChannelEpisodesInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetChannelEpisodesInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetChannelEpisodesInternalServerErrorData; constructor(err: GetChannelEpisodesInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetChannelEpisodesUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetChannelEpisodesUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetChannelEpisodesUnauthorizedErrorData; constructor(err: GetChannelEpisodesUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type GetChannelEpisodesBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class GetChannelEpisodesBadRequestError 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$: GetChannelEpisodesBadRequestErrorData; constructor(err: GetChannelEpisodesBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetChannelEpisodesInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetChannelEpisodesUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const GetChannelEpisodesBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=getchannelepisodes.d.ts.map