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