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