import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomFieldCheckboxProperties, CustomFieldCheckboxProperties$Outbound } from "./customfieldcheckboxproperties.js"; import { MetadataOutputType, MetadataOutputType$Outbound } from "./metadataoutputtype.js"; /** * Schema for a custom field of type checkbox. */ export type CustomFieldCheckbox = { /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; /** * The ID of the object. */ id: string; metadata: { [k: string]: MetadataOutputType; }; type: "checkbox"; /** * Identifier of the custom field. It'll be used as key when storing the value. */ slug: string; /** * Name of the custom field. */ name: string; /** * The ID of the organization owning the custom field. */ organizationId: string; properties: CustomFieldCheckboxProperties; }; /** @internal */ export declare const CustomFieldCheckbox$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomFieldCheckbox$Outbound = { created_at: string; modified_at: string | null; id: string; metadata: { [k: string]: MetadataOutputType$Outbound; }; type: "checkbox"; slug: string; name: string; organization_id: string; properties: CustomFieldCheckboxProperties$Outbound; }; /** @internal */ export declare const CustomFieldCheckbox$outboundSchema: z.ZodMiniType; export declare function customFieldCheckboxToJSON(customFieldCheckbox: CustomFieldCheckbox): string; export declare function customFieldCheckboxFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfieldcheckbox.d.ts.map