import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type DeleteMediasMediaHashedIdInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class DeleteMediasMediaHashedIdInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: DeleteMediasMediaHashedIdInternalServerErrorData; constructor(err: DeleteMediasMediaHashedIdInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type DeleteMediasMediaHashedIdNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class DeleteMediasMediaHashedIdNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: DeleteMediasMediaHashedIdNotFoundErrorData; constructor(err: DeleteMediasMediaHashedIdNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type DeleteMediasMediaHashedIdForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class DeleteMediasMediaHashedIdForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: DeleteMediasMediaHashedIdForbiddenErrorData; constructor(err: DeleteMediasMediaHashedIdForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type DeleteMediasMediaHashedIdUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class DeleteMediasMediaHashedIdUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: DeleteMediasMediaHashedIdUnauthorizedErrorData; constructor(err: DeleteMediasMediaHashedIdUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const DeleteMediasMediaHashedIdInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const DeleteMediasMediaHashedIdNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const DeleteMediasMediaHashedIdForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const DeleteMediasMediaHashedIdUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=deletemediasmediahashedid.d.ts.map