import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetMediasMediaHashedIdStatsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetMediasMediaHashedIdStatsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetMediasMediaHashedIdStatsInternalServerErrorData; constructor(err: GetMediasMediaHashedIdStatsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type GetMediasMediaHashedIdStatsNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class GetMediasMediaHashedIdStatsNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetMediasMediaHashedIdStatsNotFoundErrorData; constructor(err: GetMediasMediaHashedIdStatsNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type GetMediasMediaHashedIdStatsForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class GetMediasMediaHashedIdStatsForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetMediasMediaHashedIdStatsForbiddenErrorData; constructor(err: GetMediasMediaHashedIdStatsForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetMediasMediaHashedIdStatsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetMediasMediaHashedIdStatsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetMediasMediaHashedIdStatsUnauthorizedErrorData; constructor(err: GetMediasMediaHashedIdStatsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type GetMediasMediaHashedIdStatsBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class GetMediasMediaHashedIdStatsBadRequestError 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$: GetMediasMediaHashedIdStatsBadRequestErrorData; constructor(err: GetMediasMediaHashedIdStatsBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetMediasMediaHashedIdStatsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetMediasMediaHashedIdStatsNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const GetMediasMediaHashedIdStatsForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const GetMediasMediaHashedIdStatsUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const GetMediasMediaHashedIdStatsBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=getmediasmediahashedidstats.d.ts.map