import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PatchTransfer = { metadata?: { [k: string]: string; } | null | undefined; /** * Optional alias from a foreign/external system which can be used to reference this resource. */ foreignID?: string | undefined; }; /** @internal */ export declare const PatchTransfer$inboundSchema: z.ZodType; /** @internal */ export type PatchTransfer$Outbound = { metadata?: { [k: string]: string; } | null | undefined; foreignID?: string | undefined; }; /** @internal */ export declare const PatchTransfer$outboundSchema: z.ZodType; export declare function patchTransferToJSON(patchTransfer: PatchTransfer): string; export declare function patchTransferFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=patchtransfer.d.ts.map