import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomFieldFinder = { /** * Custom Field ID */ id?: string | undefined; /** * Custom Field name to use as a label if provided */ name?: string | null | undefined; /** * More information about the custom field */ description?: string | null | undefined; /** * Custom Field value */ value?: any | undefined; /** * JSONPath finder for retrieving this value when mapping a response payload from downstream */ finder?: string | undefined; }; /** @internal */ export declare const CustomFieldFinder$inboundSchema: z.ZodType; /** @internal */ export type CustomFieldFinder$Outbound = { id?: string | undefined; name?: string | null | undefined; description?: string | null | undefined; value?: any | undefined; finder?: string | undefined; }; /** @internal */ export declare const CustomFieldFinder$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 CustomFieldFinder$ { /** @deprecated use `CustomFieldFinder$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CustomFieldFinder$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CustomFieldFinder$Outbound` instead. */ type Outbound = CustomFieldFinder$Outbound; } export declare function customFieldFinderToJSON(customFieldFinder: CustomFieldFinder): string; export declare function customFieldFinderFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfieldfinder.d.ts.map