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