import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetCaptionsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetCaptionsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetCaptionsInternalServerErrorData; constructor(err: GetCaptionsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetCaptionsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetCaptionsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetCaptionsUnauthorizedErrorData; constructor(err: GetCaptionsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type GetCaptionsBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class GetCaptionsBadRequestError extends WistiaError { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetCaptionsBadRequestErrorData; constructor(err: GetCaptionsBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetCaptionsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetCaptionsUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const GetCaptionsBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=getcaptions.d.ts.map