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 { VolumeRange, VolumeRange$Outbound } from "./volumerange.js"; /** * Defines the specific parameters used for fee calculation. */ export type FeeProperties = { /** * A fixed fee that is applied to the amount of each transaction in the `fixed` and `blended` fee models. */ fixedAmount?: AmountDecimal | undefined; /** * A percentage fee that is applied to the amount of each transaction in the `blended` fee model, expressed as a decimal. * * @remarks * * For example, 0.05% is '0.05'. */ variableRate?: string | undefined; /** * Specifies the minimum allowable spending for a single transaction, working as a transaction floor. */ minPerTransaction?: AmountDecimal | undefined; /** * Specifies the maximum allowable spending for a single transaction, working as a transaction ceiling. */ maxPerTransaction?: AmountDecimal | undefined; /** * Defines the volume ranges for tiered pricing models. */ volumeRanges: Array; }; /** @internal */ export declare const FeeProperties$inboundSchema: z.ZodType; /** @internal */ export type FeeProperties$Outbound = { fixedAmount?: AmountDecimal$Outbound | undefined; variableRate?: string | undefined; minPerTransaction?: AmountDecimal$Outbound | undefined; maxPerTransaction?: AmountDecimal$Outbound | undefined; volumeRanges: Array; }; /** @internal */ export declare const FeeProperties$outboundSchema: z.ZodType; export declare function feePropertiesToJSON(feeProperties: FeeProperties): string; export declare function feePropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=feeproperties.d.ts.map