import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Amount, Amount$Outbound } from "./amount.js"; import { ScheduledTransferLineItems, ScheduledTransferLineItems$Outbound } from "./scheduledtransferlineitems.js"; import { SchedulePaymentMethod, SchedulePaymentMethod$Outbound } from "./schedulepaymentmethod.js"; export type RunTransfer = { amount: Amount; /** * Optional sales tax amount. This amount is included in the total transfer amount. */ salesTaxAmount?: Amount | undefined; destination: SchedulePaymentMethod; partnerAccountID: string; source: SchedulePaymentMethod; /** * Simple description to place on the transfer. */ description: string; /** * Line items for a scheduled transfer. */ lineItems?: ScheduledTransferLineItems | undefined; }; /** @internal */ export declare const RunTransfer$inboundSchema: z.ZodType; /** @internal */ export type RunTransfer$Outbound = { amount: Amount$Outbound; salesTaxAmount?: Amount$Outbound | undefined; destination: SchedulePaymentMethod$Outbound; partnerAccountID: string; source: SchedulePaymentMethod$Outbound; description: string; lineItems?: ScheduledTransferLineItems$Outbound | undefined; }; /** @internal */ export declare const RunTransfer$outboundSchema: z.ZodType; export declare function runTransferToJSON(runTransfer: RunTransfer): string; export declare function runTransferFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=runtransfer.d.ts.map