import { MethodInfoLimits } from './methodInfoLimits'; export interface MethodInfo { /** * Email address */ email?: string; /** * Token for card session */ payment_token?: string; /** * Fee value for amount field (in percentage, for example 3.55) */ fee: number; /** * Fixed fee value for amount field (absolute value in selected currency, for example 10002.4) */ fixedFee: number; limits: MethodInfoLimits; defaultWallet?: string; defaultAmount: number; /** * Is the amount dynamic. For example, this is true for crypto and skin payment methods. */ amountDynamic: boolean; }