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