import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostMediasMediaHashedIdCopyInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostMediasMediaHashedIdCopyInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdCopyInternalServerErrorData; constructor(err: PostMediasMediaHashedIdCopyInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Method not allowed, e.g. trying to copy archived media. */ export type MethodNotAllowedErrorData = { error?: string | undefined; }; /** * Method not allowed, e.g. trying to copy archived media. */ export declare class MethodNotAllowedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: MethodNotAllowedErrorData; constructor(err: MethodNotAllowedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type PostMediasMediaHashedIdCopyNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class PostMediasMediaHashedIdCopyNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdCopyNotFoundErrorData; constructor(err: PostMediasMediaHashedIdCopyNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PostMediasMediaHashedIdCopyForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PostMediasMediaHashedIdCopyForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdCopyForbiddenErrorData; constructor(err: PostMediasMediaHashedIdCopyForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostMediasMediaHashedIdCopyUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostMediasMediaHashedIdCopyUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdCopyUnauthorizedErrorData; constructor(err: PostMediasMediaHashedIdCopyUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request, e.g. copy failure. */ export type PostMediasMediaHashedIdCopyBadRequestErrorData = { error?: string | undefined; }; /** * Bad request, e.g. copy failure. */ export declare class PostMediasMediaHashedIdCopyBadRequestError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdCopyBadRequestErrorData; constructor(err: PostMediasMediaHashedIdCopyBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostMediasMediaHashedIdCopyInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const MethodNotAllowedError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasMediaHashedIdCopyNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasMediaHashedIdCopyForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasMediaHashedIdCopyUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasMediaHashedIdCopyBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=postmediasmediahashedidcopy.d.ts.map