import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetChannelsChannelHashedIdInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetChannelsChannelHashedIdInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetChannelsChannelHashedIdInternalServerErrorData; constructor(err: GetChannelsChannelHashedIdInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type GetChannelsChannelHashedIdNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class GetChannelsChannelHashedIdNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetChannelsChannelHashedIdNotFoundErrorData; constructor(err: GetChannelsChannelHashedIdNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetChannelsChannelHashedIdUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetChannelsChannelHashedIdUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetChannelsChannelHashedIdUnauthorizedErrorData; constructor(err: GetChannelsChannelHashedIdUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetChannelsChannelHashedIdInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetChannelsChannelHashedIdNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const GetChannelsChannelHashedIdUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=getchannelschannelhashedid.d.ts.map