import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Analytics service is temporarily unavailable */ export type GetAnalyticsWebinarsWebinarIdServiceUnavailableErrorData = { error?: string | undefined; }; /** * Analytics service is temporarily unavailable */ export declare class GetAnalyticsWebinarsWebinarIdServiceUnavailableError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdServiceUnavailableErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdServiceUnavailableErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Internal server error */ export type GetAnalyticsWebinarsWebinarIdInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetAnalyticsWebinarsWebinarIdInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdInternalServerErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unprocessable entity */ export type GetAnalyticsWebinarsWebinarIdUnprocessableEntityErrorData = { /** * Error message detailing why the request could not be processed. */ error?: string | undefined; }; /** * Unprocessable entity */ export declare class GetAnalyticsWebinarsWebinarIdUnprocessableEntityError extends WistiaError { /** * Error message detailing why the request could not be processed. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdUnprocessableEntityErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * The event has not yet reached a terminal state. Analytics are only available after the event has ended. */ export type GetAnalyticsWebinarsWebinarIdConflictErrorData = { /** * Error message indicating the event has not ended. */ error?: string | undefined; }; /** * The event has not yet reached a terminal state. Analytics are only available after the event has ended. */ export declare class GetAnalyticsWebinarsWebinarIdConflictError extends WistiaError { /** * Error message indicating the event has not ended. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdConflictErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdConflictErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type GetAnalyticsWebinarsWebinarIdForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class GetAnalyticsWebinarsWebinarIdForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdForbiddenErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetAnalyticsWebinarsWebinarIdUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetAnalyticsWebinarsWebinarIdUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdUnauthorizedErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdServiceUnavailableError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdConflictError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=getanalyticswebinarswebinarid.d.ts.map