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