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

org.oxerr.okcoin.fix.field.FreeBtc Maven / Gradle / Ivy

package org.oxerr.okcoin.fix.field;

import java.math.BigDecimal;

import quickfix.DecimalField;

public class FreeBtc extends DecimalField {

	private static final long serialVersionUID = 20150129L;

	public static final int FIELD = 8101;

	public FreeBtc() {
		super(FIELD);
	}

	public FreeBtc(BigDecimal data) {
		super(FIELD, data);
	}

	public FreeBtc(double data) {
		super(FIELD, BigDecimal.valueOf(data));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy