import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Identifies records in external systems which correlate with this agreement. */ export type LinkedData = { applicationName?: string | undefined; objectName?: string | undefined; recordId?: string | undefined; }; /** @internal */ export declare const LinkedData$inboundSchema: z.ZodType; /** @internal */ export type LinkedData$Outbound = { application_name?: string | undefined; object_name?: string | undefined; record_id?: string | undefined; }; /** @internal */ export declare const LinkedData$outboundSchema: z.ZodType; export declare function linkedDataToJSON(linkedData: LinkedData): string; export declare function linkedDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkeddata.d.ts.map