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