import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PutMediasArchiveInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PutMediasArchiveInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasArchiveInternalServerErrorData; constructor(err: PutMediasArchiveInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unprocessable entity, e.g. too many media requested. */ export type PutMediasArchiveUnprocessableEntityErrorData = { error?: string | undefined; }; /** * Unprocessable entity, e.g. too many media requested. */ export declare class PutMediasArchiveUnprocessableEntityError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasArchiveUnprocessableEntityErrorData; constructor(err: PutMediasArchiveUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, e.g. account does not have access to archiving. */ export type PutMediasArchiveForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, e.g. account does not have access to archiving. */ export declare class PutMediasArchiveForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasArchiveForbiddenErrorData; constructor(err: PutMediasArchiveForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PutMediasArchiveUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PutMediasArchiveUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasArchiveUnauthorizedErrorData; constructor(err: PutMediasArchiveUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PutMediasArchiveInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasArchiveUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasArchiveForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasArchiveUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=putmediasarchive.d.ts.map