import * as z from "zod/v4-mini"; import { CustomFieldSelectProperties, CustomFieldSelectProperties$Outbound } from "./customfieldselectproperties.js"; export type CustomFieldUpdateSelectMetadata = string | number | number | boolean; /** * Schema to update a custom field of type select. */ export type CustomFieldUpdateSelect = { /** * Key-value object allowing you to store additional information. * * @remarks * * The key must be a string with a maximum length of **40 characters**. * The value must be either: * * * A string with a maximum length of **500 characters** * * An integer * * A floating-point number * * A boolean * * You can store up to **50 key-value pairs**. */ metadata?: { [k: string]: string | number | number | boolean; } | undefined; name?: string | null | undefined; slug?: string | null | undefined; type: "select"; properties?: CustomFieldSelectProperties | null | undefined; }; /** @internal */ export type CustomFieldUpdateSelectMetadata$Outbound = string | number | number | boolean; /** @internal */ export declare const CustomFieldUpdateSelectMetadata$outboundSchema: z.ZodMiniType; export declare function customFieldUpdateSelectMetadataToJSON(customFieldUpdateSelectMetadata: CustomFieldUpdateSelectMetadata): string; /** @internal */ export type CustomFieldUpdateSelect$Outbound = { metadata?: { [k: string]: string | number | number | boolean; } | undefined; name?: string | null | undefined; slug?: string | null | undefined; type: "select"; properties?: CustomFieldSelectProperties$Outbound | null | undefined; }; /** @internal */ export declare const CustomFieldUpdateSelect$outboundSchema: z.ZodMiniType; export declare function customFieldUpdateSelectToJSON(customFieldUpdateSelect: CustomFieldUpdateSelect): string; //# sourceMappingURL=customfieldupdateselect.d.ts.map