/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type FollowUpsV2NumberShowRequest = { /** * Unique identifier for the follow-up */ id: string; }; /** @internal */ export const FollowUpsV2NumberShowRequest$inboundSchema: z.ZodType< FollowUpsV2NumberShowRequest, z.ZodTypeDef, unknown > = z.object({ id: z.string(), }); /** @internal */ export type FollowUpsV2NumberShowRequest$Outbound = { id: string; }; /** @internal */ export const FollowUpsV2NumberShowRequest$outboundSchema: z.ZodType< FollowUpsV2NumberShowRequest$Outbound, z.ZodTypeDef, FollowUpsV2NumberShowRequest > = 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 FollowUpsV2NumberShowRequest$ { /** @deprecated use `FollowUpsV2NumberShowRequest$inboundSchema` instead. */ export const inboundSchema = FollowUpsV2NumberShowRequest$inboundSchema; /** @deprecated use `FollowUpsV2NumberShowRequest$outboundSchema` instead. */ export const outboundSchema = FollowUpsV2NumberShowRequest$outboundSchema; /** @deprecated use `FollowUpsV2NumberShowRequest$Outbound` instead. */ export type Outbound = FollowUpsV2NumberShowRequest$Outbound; }