import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PutMediasRestoreInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PutMediasRestoreInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasRestoreInternalServerErrorData; constructor(err: PutMediasRestoreInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Missing arguments for restoration of media. */ export type PutMediasRestoreUnprocessableEntityErrorData = { /** * An error message that the necessary parameters were not provided. */ error?: string | undefined; }; /** * Missing arguments for restoration of media. */ export declare class PutMediasRestoreUnprocessableEntityError extends WistiaError { /** * An error message that the necessary parameters were not provided. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasRestoreUnprocessableEntityErrorData; constructor(err: PutMediasRestoreUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type PutMediasRestoreNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class PutMediasRestoreNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasRestoreNotFoundErrorData; constructor(err: PutMediasRestoreNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, e.g. account does not have access to archiving. */ export type PutMediasRestoreForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, e.g. account does not have access to archiving. */ export declare class PutMediasRestoreForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasRestoreForbiddenErrorData; constructor(err: PutMediasRestoreForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PutMediasRestoreUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PutMediasRestoreUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasRestoreUnauthorizedErrorData; constructor(err: PutMediasRestoreUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PutMediasRestoreInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasRestoreUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasRestoreNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasRestoreForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasRestoreUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=putmediasrestore.d.ts.map