import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomFieldNumberProperties, CustomFieldNumberProperties$Outbound } from "./customfieldnumberproperties.js"; import { MetadataOutputType, MetadataOutputType$Outbound } from "./metadataoutputtype.js"; /** * Schema for a custom field of type number. */ export type CustomFieldNumber = { /** * 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: "number"; /** * 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: CustomFieldNumberProperties; }; /** @internal */ export declare const CustomFieldNumber$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomFieldNumber$Outbound = { created_at: string; modified_at: string | null; id: string; metadata: { [k: string]: MetadataOutputType$Outbound; }; type: "number"; slug: string; name: string; organization_id: string; properties: CustomFieldNumberProperties$Outbound; }; /** @internal */ export declare const CustomFieldNumber$outboundSchema: z.ZodMiniType; export declare function customFieldNumberToJSON(customFieldNumber: CustomFieldNumber): string; export declare function customFieldNumberFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfieldnumber.d.ts.map