![JAR search and dependency download from the Maven repository](/logo.png)
org.oxerr.okcoin.fix.field.FrozenLtc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of okcoin-client-fix Show documentation
Show all versions of okcoin-client-fix Show documentation
Client for <a href="https://www.okcoin.cn">OKCoin</a> FIX API.
package org.oxerr.okcoin.fix.field;
import java.math.BigDecimal;
import quickfix.DecimalField;
public class FrozenLtc extends DecimalField {
private static final long serialVersionUID = 20150129L;
public static final int FIELD = 8105;
public FrozenLtc() {
super(FIELD);
}
public FrozenLtc(BigDecimal data) {
super(FIELD, data);
}
public FrozenLtc(double data) {
super(FIELD, BigDecimal.valueOf(data));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy