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