import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Six = {}; export type Four = {}; export type Value = Four | string | number | boolean | Array | Array; export type CustomField = { /** * Unique identifier for the custom field. */ id: string | null; /** * Name of the custom field. */ name?: string | null | undefined; /** * More information about the custom field */ description?: string | null | undefined; value?: Four | string | number | boolean | Array | Array | null | undefined; }; /** @internal */ export declare const Six$inboundSchema: z.ZodType; /** @internal */ export type Six$Outbound = {}; /** @internal */ export declare const Six$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 Six$ { /** @deprecated use `Six$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Six$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Six$Outbound` instead. */ type Outbound = Six$Outbound; } export declare function sixToJSON(six: Six): string; export declare function sixFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Four$inboundSchema: z.ZodType; /** @internal */ export type Four$Outbound = {}; /** @internal */ export declare const Four$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 Four$ { /** @deprecated use `Four$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Four$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Four$Outbound` instead. */ type Outbound = Four$Outbound; } export declare function fourToJSON(four: Four): string; export declare function fourFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Value$inboundSchema: z.ZodType; /** @internal */ export type Value$Outbound = Four$Outbound | string | number | boolean | Array | Array; /** @internal */ export declare const Value$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 Value$ { /** @deprecated use `Value$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Value$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Value$Outbound` instead. */ type Outbound = Value$Outbound; } export declare function valueToJSON(value: Value): string; export declare function valueFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CustomField$inboundSchema: z.ZodType; /** @internal */ export type CustomField$Outbound = { id: string | null; name?: string | null | undefined; description?: string | null | undefined; value?: Four$Outbound | string | number | boolean | Array | Array | null | undefined; }; /** @internal */ export declare const CustomField$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 CustomField$ { /** @deprecated use `CustomField$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CustomField$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CustomField$Outbound` instead. */ type Outbound = CustomField$Outbound; } export declare function customFieldToJSON(customField: CustomField): string; export declare function customFieldFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfield.d.ts.map