import * as z from "zod"; export type MarkNotificationsAsReadRequestBody = { /** * (optional) Leave off to mark all notifications as read */ id?: number | undefined; }; /** * notifications marked read */ export type MarkNotificationsAsReadResponseBody = { success?: string | undefined; }; /** @internal */ export declare const MarkNotificationsAsReadRequestBody$inboundSchema: z.ZodType; /** @internal */ export type MarkNotificationsAsReadRequestBody$Outbound = { id?: number | undefined; }; /** @internal */ export declare const MarkNotificationsAsReadRequestBody$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 MarkNotificationsAsReadRequestBody$ { /** @deprecated use `MarkNotificationsAsReadRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MarkNotificationsAsReadRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MarkNotificationsAsReadRequestBody$Outbound` instead. */ type Outbound = MarkNotificationsAsReadRequestBody$Outbound; } /** @internal */ export declare const MarkNotificationsAsReadResponseBody$inboundSchema: z.ZodType; /** @internal */ export type MarkNotificationsAsReadResponseBody$Outbound = { success?: string | undefined; }; /** @internal */ export declare const MarkNotificationsAsReadResponseBody$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 MarkNotificationsAsReadResponseBody$ { /** @deprecated use `MarkNotificationsAsReadResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MarkNotificationsAsReadResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MarkNotificationsAsReadResponseBody$Outbound` instead. */ type Outbound = MarkNotificationsAsReadResponseBody$Outbound; } //# sourceMappingURL=marknotificationsasread.d.ts.map