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