import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; export declare const NotificationLevel: { readonly Zero: "0"; readonly One: "1"; readonly Two: "2"; readonly Three: "3"; }; export type NotificationLevel = ClosedEnum; export type SetNotificationLevelRequestBody = { notificationLevel: NotificationLevel; }; export type SetNotificationLevelRequest = { apiKey: string; apiUsername: string; requestBody?: SetNotificationLevelRequestBody | undefined; id: string; }; /** * topic updated */ export type SetNotificationLevelResponseBody = { success?: string | undefined; }; /** @internal */ export declare const NotificationLevel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const NotificationLevel$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace NotificationLevel$ { /** @deprecated use `NotificationLevel$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Zero: "0"; readonly One: "1"; readonly Two: "2"; readonly Three: "3"; }>; /** @deprecated use `NotificationLevel$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Zero: "0"; readonly One: "1"; readonly Two: "2"; readonly Three: "3"; }>; } /** @internal */ export declare const SetNotificationLevelRequestBody$inboundSchema: z.ZodType; /** @internal */ export type SetNotificationLevelRequestBody$Outbound = { notification_level: string; }; /** @internal */ export declare const SetNotificationLevelRequestBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SetNotificationLevelRequestBody$ { /** @deprecated use `SetNotificationLevelRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SetNotificationLevelRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SetNotificationLevelRequestBody$Outbound` instead. */ type Outbound = SetNotificationLevelRequestBody$Outbound; } /** @internal */ export declare const SetNotificationLevelRequest$inboundSchema: z.ZodType; /** @internal */ export type SetNotificationLevelRequest$Outbound = { "Api-Key": string; "Api-Username": string; RequestBody?: SetNotificationLevelRequestBody$Outbound | undefined; id: string; }; /** @internal */ export declare const SetNotificationLevelRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SetNotificationLevelRequest$ { /** @deprecated use `SetNotificationLevelRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SetNotificationLevelRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SetNotificationLevelRequest$Outbound` instead. */ type Outbound = SetNotificationLevelRequest$Outbound; } /** @internal */ export declare const SetNotificationLevelResponseBody$inboundSchema: z.ZodType; /** @internal */ export type SetNotificationLevelResponseBody$Outbound = { success?: string | undefined; }; /** @internal */ export declare const SetNotificationLevelResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SetNotificationLevelResponseBody$ { /** @deprecated use `SetNotificationLevelResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SetNotificationLevelResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SetNotificationLevelResponseBody$Outbound` instead. */ type Outbound = SetNotificationLevelResponseBody$Outbound; } //# sourceMappingURL=setnotificationlevel.d.ts.map