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 { GeneratedBy, GeneratedBy$Outbound } from "./generatedby.js"; /** * A fee incurred by a user. */ export type IncurredFee = { feeID?: string | undefined; /** * Account ID the fee belongs to. */ accountID?: string | undefined; /** * Wallet ID associated with the fee. */ walletID?: string | undefined; /** * Timestamp when the fee was created. */ createdOn?: Date | undefined; /** * Name of the fee. */ feeName?: string | undefined; /** * The fee amount. */ amount?: AmountDecimal | undefined; /** * Object indicating what generated the fee (TransferID, CardID, DisputeID, AccountID, or BankAccountID). */ generatedBy?: GeneratedBy | undefined; /** * Describes the source of the fee, such as a Moov-set processing fee, a network pass-through fee, or an interchange or discount fee. */ feeGroup?: string | undefined; /** * Unique identifier for this residual payment calculation. */ residualID?: string | undefined; }; /** @internal */ export declare const IncurredFee$inboundSchema: z.ZodType; /** @internal */ export type IncurredFee$Outbound = { feeID?: string | undefined; accountID?: string | undefined; walletID?: string | undefined; createdOn?: string | undefined; feeName?: string | undefined; amount?: AmountDecimal$Outbound | undefined; generatedBy?: GeneratedBy$Outbound | undefined; feeGroup?: string | undefined; residualID?: string | undefined; }; /** @internal */ export declare const IncurredFee$outboundSchema: z.ZodType; export declare function incurredFeeToJSON(incurredFee: IncurredFee): string; export declare function incurredFeeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=incurredfee.d.ts.map