All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.binance4j.margin.param.IsolatedFeeParams Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package com.binance4j.margin.param;

import com.binance4j.core.annotation.Param;
import com.binance4j.core.param.Params;
import com.binance4j.margin.client.MarginClient;

/**
 * {@link MarginClient#getIsolatedFeeData} params.
 * 
 * @param symbol   Asset.
 * @param vipLevel Vip level.
 */
@Param(weight = 10)
public record IsolatedFeeParams(String symbol, Integer vipLevel) implements Params {

	/**
	 * Creates an instance of {@link InterestRateHistoryParams}.
	 * 
	 * @param symbol Asset.
	 */
	public IsolatedFeeParams(String symbol) {
		this(symbol, null);
	}

	/**
	 * Creates an instance of {@link InterestRateHistoryParams}.
	 * 
	 * @param vipLevel Vip level.
	 */
	public IsolatedFeeParams(Integer vipLevel) {
		this(null, vipLevel);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy