import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostWebinarsWebinarIdRegistrationsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostWebinarsWebinarIdRegistrationsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostWebinarsWebinarIdRegistrationsInternalServerErrorData; constructor(err: PostWebinarsWebinarIdRegistrationsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unprocessable entity, the request parameters were invalid. */ export type PostWebinarsWebinarIdRegistrationsUnprocessableEntityErrorData = { /** * Object containing validation errors grouped by field name. Each field contains an array of error messages. */ errors?: { [k: string]: Array; } | undefined; }; /** * Unprocessable entity, the request parameters were invalid. */ export declare class PostWebinarsWebinarIdRegistrationsUnprocessableEntityError extends WistiaError { /** * Object containing validation errors grouped by field name. Each field contains an array of error messages. */ errors?: { [k: string]: Array; } | undefined; /** The original data that was passed to this error instance. */ data$: PostWebinarsWebinarIdRegistrationsUnprocessableEntityErrorData; constructor(err: PostWebinarsWebinarIdRegistrationsUnprocessableEntityErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type PostWebinarsWebinarIdRegistrationsNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class PostWebinarsWebinarIdRegistrationsNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostWebinarsWebinarIdRegistrationsNotFoundErrorData; constructor(err: PostWebinarsWebinarIdRegistrationsNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PostWebinarsWebinarIdRegistrationsForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PostWebinarsWebinarIdRegistrationsForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostWebinarsWebinarIdRegistrationsForbiddenErrorData; constructor(err: PostWebinarsWebinarIdRegistrationsForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostWebinarsWebinarIdRegistrationsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostWebinarsWebinarIdRegistrationsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostWebinarsWebinarIdRegistrationsUnauthorizedErrorData; constructor(err: PostWebinarsWebinarIdRegistrationsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostWebinarsWebinarIdRegistrationsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostWebinarsWebinarIdRegistrationsUnprocessableEntityError$inboundSchema: z.ZodType; /** @internal */ export declare const PostWebinarsWebinarIdRegistrationsNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PostWebinarsWebinarIdRegistrationsForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PostWebinarsWebinarIdRegistrationsUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=postwebinarswebinaridregistrations.d.ts.map