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