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