import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PutMediasMediaHashedIdInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PutMediasMediaHashedIdInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdInternalServerErrorData; constructor(err: PutMediasMediaHashedIdInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type PutMediasMediaHashedIdNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class PutMediasMediaHashedIdNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdNotFoundErrorData; constructor(err: PutMediasMediaHashedIdNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PutMediasMediaHashedIdForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PutMediasMediaHashedIdForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdForbiddenErrorData; constructor(err: PutMediasMediaHashedIdForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PutMediasMediaHashedIdUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PutMediasMediaHashedIdUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdUnauthorizedErrorData; constructor(err: PutMediasMediaHashedIdUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type PutMediasMediaHashedIdBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class PutMediasMediaHashedIdBadRequestError extends WistiaError { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutMediasMediaHashedIdBadRequestErrorData; constructor(err: PutMediasMediaHashedIdBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PutMediasMediaHashedIdInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasMediaHashedIdNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasMediaHashedIdForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasMediaHashedIdUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const PutMediasMediaHashedIdBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=putmediasmediahashedid.d.ts.map