import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PutMediasMediaHashedIdSwapInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PutMediasMediaHashedIdSwapInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdSwapInternalServerErrorData; constructor(err: PutMediasMediaHashedIdSwapInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type PutMediasMediaHashedIdSwapNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class PutMediasMediaHashedIdSwapNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdSwapNotFoundErrorData; constructor(err: PutMediasMediaHashedIdSwapNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PutMediasMediaHashedIdSwapForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PutMediasMediaHashedIdSwapForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdSwapForbiddenErrorData; constructor(err: PutMediasMediaHashedIdSwapForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PutMediasMediaHashedIdSwapUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PutMediasMediaHashedIdSwapUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdSwapUnauthorizedErrorData; constructor(err: PutMediasMediaHashedIdSwapUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request, e.g. missing replacement_media_id or media type mismatch. */ export type PutMediasMediaHashedIdSwapBadRequestErrorData = { error?: string | undefined; }; /** * Bad request, e.g. missing replacement_media_id or media type mismatch. */ export declare class PutMediasMediaHashedIdSwapBadRequestError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdSwapBadRequestErrorData; constructor(err: PutMediasMediaHashedIdSwapBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PutMediasMediaHashedIdSwapInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasMediaHashedIdSwapNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasMediaHashedIdSwapForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasMediaHashedIdSwapUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasMediaHashedIdSwapBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=putmediasmediahashedidswap.d.ts.map