import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Analytics service is temporarily unavailable */ export type GetAnalyticsWebinarsWebinarIdRegistrationServiceUnavailableErrorData = { error?: string | undefined; }; /** * Analytics service is temporarily unavailable */ export declare class GetAnalyticsWebinarsWebinarIdRegistrationServiceUnavailableError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdRegistrationServiceUnavailableErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdRegistrationServiceUnavailableErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Internal server error */ export type GetAnalyticsWebinarsWebinarIdRegistrationInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetAnalyticsWebinarsWebinarIdRegistrationInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdRegistrationInternalServerErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdRegistrationInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type GetAnalyticsWebinarsWebinarIdRegistrationForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class GetAnalyticsWebinarsWebinarIdRegistrationForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdRegistrationForbiddenErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdRegistrationForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetAnalyticsWebinarsWebinarIdRegistrationUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetAnalyticsWebinarsWebinarIdRegistrationUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsWebinarsWebinarIdRegistrationUnauthorizedErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdRegistrationUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type GetAnalyticsWebinarsWebinarIdRegistrationBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class GetAnalyticsWebinarsWebinarIdRegistrationBadRequestError 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$: GetAnalyticsWebinarsWebinarIdRegistrationBadRequestErrorData; constructor(err: GetAnalyticsWebinarsWebinarIdRegistrationBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdRegistrationServiceUnavailableError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdRegistrationInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdRegistrationForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdRegistrationUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsWebinarsWebinarIdRegistrationBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=getanalyticswebinarswebinaridregistration.d.ts.map