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