/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type FollowUpPriorityV2 = { /** * Description of the follow-up priority option */ description?: string | undefined; /** * Unique identifier for the follow-up priority option */ id: string; /** * Name of the follow-up priority option */ name: string; /** * Rank is used to order the follow-up priority options correctly */ rank: number; }; /** @internal */ export const FollowUpPriorityV2$inboundSchema: z.ZodType< FollowUpPriorityV2, z.ZodTypeDef, unknown > = z.object({ description: z.string().optional(), id: z.string(), name: z.string(), rank: z.number().int(), }); /** @internal */ export type FollowUpPriorityV2$Outbound = { description?: string | undefined; id: string; name: string; rank: number; }; /** @internal */ export const FollowUpPriorityV2$outboundSchema: z.ZodType< FollowUpPriorityV2$Outbound, z.ZodTypeDef, FollowUpPriorityV2 > = z.object({ description: z.string().optional(), id: z.string(), name: z.string(), rank: z.number().int(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace FollowUpPriorityV2$ { /** @deprecated use `FollowUpPriorityV2$inboundSchema` instead. */ export const inboundSchema = FollowUpPriorityV2$inboundSchema; /** @deprecated use `FollowUpPriorityV2$outboundSchema` instead. */ export const outboundSchema = FollowUpPriorityV2$outboundSchema; /** @deprecated use `FollowUpPriorityV2$Outbound` instead. */ export type Outbound = FollowUpPriorityV2$Outbound; }