import * as z from "zod"; import { CustomFieldValuePayloadV1, CustomFieldValuePayloadV1$Outbound } from "./customfieldvaluepayloadv1.js"; export type CustomFieldEntryPayloadV1 = { /** * ID of the custom field this entry is linked against */ customFieldId: string; /** * List of values to associate with this entry. Use an empty array to unset the value of the custom field. */ values: Array; }; /** @internal */ export declare const CustomFieldEntryPayloadV1$inboundSchema: z.ZodType; /** @internal */ export type CustomFieldEntryPayloadV1$Outbound = { custom_field_id: string; values: Array; }; /** @internal */ export declare const CustomFieldEntryPayloadV1$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 CustomFieldEntryPayloadV1$ { /** @deprecated use `CustomFieldEntryPayloadV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CustomFieldEntryPayloadV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CustomFieldEntryPayloadV1$Outbound` instead. */ type Outbound = CustomFieldEntryPayloadV1$Outbound; } //# sourceMappingURL=customfieldentrypayloadv1.d.ts.map