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