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