com.binance4j.margin.param.IsolatedFeeParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-margin Show documentation
Show all versions of binance4j-margin Show documentation
Connector for the MARGIN endpoints of the Binance API
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