import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PutMediasCopyInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PutMediasCopyInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasCopyInternalServerErrorData; constructor(err: PutMediasCopyInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unprocessable entity, e.g. missing required parameters. */ export type PutMediasCopyUnprocessableEntityErrorData = { error?: string | undefined; }; /** * Unprocessable entity, e.g. missing required parameters. */ export declare class PutMediasCopyUnprocessableEntityError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasCopyUnprocessableEntityErrorData; constructor(err: PutMediasCopyUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PutMediasCopyForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PutMediasCopyForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasCopyForbiddenErrorData; constructor(err: PutMediasCopyForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PutMediasCopyUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PutMediasCopyUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasCopyUnauthorizedErrorData; constructor(err: PutMediasCopyUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PutMediasCopyInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasCopyUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasCopyForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasCopyUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=putmediascopy.d.ts.map