import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetStatsEventsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetStatsEventsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetStatsEventsInternalServerErrorData; constructor(err: GetStatsEventsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unprocessable entity, the request parameters were invalid. */ export type GetStatsEventsUnprocessableEntityErrorData = { /** * Error message describing why the request could not be processed. */ error?: string | undefined; }; /** * Unprocessable entity, the request parameters were invalid. */ export declare class GetStatsEventsUnprocessableEntityError extends WistiaError { /** * Error message describing why the request could not be processed. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetStatsEventsUnprocessableEntityErrorData; constructor(err: GetStatsEventsUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type GetStatsEventsForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class GetStatsEventsForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetStatsEventsForbiddenErrorData; constructor(err: GetStatsEventsForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetStatsEventsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetStatsEventsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetStatsEventsUnauthorizedErrorData; constructor(err: GetStatsEventsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetStatsEventsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetStatsEventsUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const GetStatsEventsForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const GetStatsEventsUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=getstatsevents.d.ts.map