import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js"; import { TransferParty } from "./transferparty.js"; /** * Moov fee charged to an account involved in a transfer. */ export type MoovFee = { /** * ID of the account that fees were charged to. */ accountID: string; /** * Indicates whether the account charged was the partner, source, or destination of the transfer. */ transferParty: TransferParty; /** * The total amount of fees charged to the account. */ totalAmount: AmountDecimal; /** * List of fee IDs that sum to the totalAmount. */ feeIDs: Array; }; /** @internal */ export declare const MoovFee$inboundSchema: z.ZodType; /** @internal */ export type MoovFee$Outbound = { accountID: string; transferParty: string; totalAmount: AmountDecimal$Outbound; feeIDs: Array; }; /** @internal */ export declare const MoovFee$outboundSchema: z.ZodType; export declare function moovFeeToJSON(moovFee: MoovFee): string; export declare function moovFeeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=moovfee.d.ts.map