import * as z from "zod/v4-mini"; import { CustomFieldCheckboxProperties, CustomFieldCheckboxProperties$Outbound } from "./customfieldcheckboxproperties.js"; export type CustomFieldUpdateCheckboxMetadata = string | number | number | boolean; /** * Schema to update a custom field of type checkbox. */ export type CustomFieldUpdateCheckbox = { /** * 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: "checkbox"; properties?: CustomFieldCheckboxProperties | null | undefined; }; /** @internal */ export type CustomFieldUpdateCheckboxMetadata$Outbound = string | number | number | boolean; /** @internal */ export declare const CustomFieldUpdateCheckboxMetadata$outboundSchema: z.ZodMiniType; export declare function customFieldUpdateCheckboxMetadataToJSON(customFieldUpdateCheckboxMetadata: CustomFieldUpdateCheckboxMetadata): string; /** @internal */ export type CustomFieldUpdateCheckbox$Outbound = { metadata?: { [k: string]: string | number | number | boolean; } | undefined; name?: string | null | undefined; slug?: string | null | undefined; type: "checkbox"; properties?: CustomFieldCheckboxProperties$Outbound | null | undefined; }; /** @internal */ export declare const CustomFieldUpdateCheckbox$outboundSchema: z.ZodMiniType; export declare function customFieldUpdateCheckboxToJSON(customFieldUpdateCheckbox: CustomFieldUpdateCheckbox): string; //# sourceMappingURL=customfieldupdatecheckbox.d.ts.map