import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostMediasMediaHashedIdTrimsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostMediasMediaHashedIdTrimsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdTrimsInternalServerErrorData; constructor(err: PostMediasMediaHashedIdTrimsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unprocessable entity, the request parameters were invalid. */ export type PostMediasMediaHashedIdTrimsUnprocessableEntityErrorData = { /** * Object containing validation errors grouped by field name. Each field contains an array of error messages. */ errors?: { [k: string]: Array; } | undefined; }; /** * Unprocessable entity, the request parameters were invalid. */ export declare class PostMediasMediaHashedIdTrimsUnprocessableEntityError extends WistiaError { /** * Object containing validation errors grouped by field name. Each field contains an array of error messages. */ errors?: { [k: string]: Array; } | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdTrimsUnprocessableEntityErrorData; constructor(err: PostMediasMediaHashedIdTrimsUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PostMediasMediaHashedIdTrimsForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PostMediasMediaHashedIdTrimsForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdTrimsForbiddenErrorData; constructor(err: PostMediasMediaHashedIdTrimsForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostMediasMediaHashedIdTrimsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostMediasMediaHashedIdTrimsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostMediasMediaHashedIdTrimsUnauthorizedErrorData; constructor(err: PostMediasMediaHashedIdTrimsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostMediasMediaHashedIdTrimsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasMediaHashedIdTrimsUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasMediaHashedIdTrimsForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PostMediasMediaHashedIdTrimsUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=postmediasmediahashedidtrims.d.ts.map