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