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