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