import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomMapping = { /** * Target Field ID */ id?: string | undefined; /** * Target Field name to use as a label */ label?: string | undefined; /** * Target Field description */ description?: string | null | undefined; /** * Target Field Mapping value */ value?: string | undefined; /** * Target Field Key */ key?: string | undefined; /** * Target Field Mapping is required */ required?: boolean | undefined; /** * This mapping represents a finder for a custom field */ customField?: boolean | undefined; /** * Consumer ID */ consumerId?: string | null | undefined; /** * Target Field Mapping example value from downstream */ example?: string | null | undefined; }; /** @internal */ export declare const CustomMapping$inboundSchema: z.ZodType; /** @internal */ export type CustomMapping$Outbound = { id?: string | undefined; label?: string | undefined; description?: string | null | undefined; value?: string | undefined; key?: string | undefined; required?: boolean | undefined; custom_field?: boolean | undefined; consumer_id?: string | null | undefined; example?: string | null | undefined; }; /** @internal */ export declare const CustomMapping$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 CustomMapping$ { /** @deprecated use `CustomMapping$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CustomMapping$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CustomMapping$Outbound` instead. */ type Outbound = CustomMapping$Outbound; } export declare function customMappingToJSON(customMapping: CustomMapping): string; export declare function customMappingFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=custommapping.d.ts.map