import * as z from "zod"; export type CreateRequestBody2 = { /** * ID of the custom field this option belongs to */ customFieldId: string; /** * Sort key used to order the custom field options correctly */ sortKey?: number | undefined; /** * Human readable name for the custom field option */ value: string; }; /** @internal */ export declare const CreateRequestBody2$inboundSchema: z.ZodType; /** @internal */ export type CreateRequestBody2$Outbound = { custom_field_id: string; sort_key: number; value: string; }; /** @internal */ export declare const CreateRequestBody2$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CreateRequestBody2$ { /** @deprecated use `CreateRequestBody2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody2$Outbound` instead. */ type Outbound = CreateRequestBody2$Outbound; } //# sourceMappingURL=createrequestbody2.d.ts.map