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