/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type GroupingKeyV2 = { /** * Unique identifier of the alert attribute the user wishes to group on */ id: string; }; /** @internal */ export const GroupingKeyV2$inboundSchema: z.ZodType< GroupingKeyV2, z.ZodTypeDef, unknown > = z.object({ id: z.string(), }); /** @internal */ export type GroupingKeyV2$Outbound = { id: string; }; /** @internal */ export const GroupingKeyV2$outboundSchema: z.ZodType< GroupingKeyV2$Outbound, z.ZodTypeDef, GroupingKeyV2 > = z.object({ id: z.string(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace GroupingKeyV2$ { /** @deprecated use `GroupingKeyV2$inboundSchema` instead. */ export const inboundSchema = GroupingKeyV2$inboundSchema; /** @deprecated use `GroupingKeyV2$outboundSchema` instead. */ export const outboundSchema = GroupingKeyV2$outboundSchema; /** @deprecated use `GroupingKeyV2$Outbound` instead. */ export type Outbound = GroupingKeyV2$Outbound; }