import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostMediasMediaHashedIdCaptionsPurchaseInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostMediasMediaHashedIdCaptionsPurchaseInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdCaptionsPurchaseInternalServerErrorData; constructor(err: PostMediasMediaHashedIdCaptionsPurchaseInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unprocessable entity. Account not eligible, captions already purchased, or other validation error. */ export type PostMediasMediaHashedIdCaptionsPurchaseUnprocessableEntityErrorData = { /** * Error message explaining why the purchase cannot be completed */ message?: string | undefined; }; /** * Unprocessable entity. Account not eligible, captions already purchased, or other validation error. */ export declare class PostMediasMediaHashedIdCaptionsPurchaseUnprocessableEntityError extends WistiaError { /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdCaptionsPurchaseUnprocessableEntityErrorData; constructor(err: PostMediasMediaHashedIdCaptionsPurchaseUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostMediasMediaHashedIdCaptionsPurchaseUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostMediasMediaHashedIdCaptionsPurchaseUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdCaptionsPurchaseUnauthorizedErrorData; constructor(err: PostMediasMediaHashedIdCaptionsPurchaseUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostMediasMediaHashedIdCaptionsPurchaseInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasMediaHashedIdCaptionsPurchaseUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasMediaHashedIdCaptionsPurchaseUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=postmediasmediahashedidcaptionspurchase.d.ts.map