org.knowm.xchange.cexio.dto.CexioPlaceOrderRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-cexio Show documentation
Show all versions of xchange-cexio Show documentation
XChange implementation for the Cex.io Exchange
package org.knowm.xchange.cexio.dto;
import java.math.BigDecimal;
import org.knowm.xchange.cexio.dto.trade.CexIOOrder;
public class CexioPlaceOrderRequest extends CexIORequest {
public final CexIOOrder.Type type;
public final BigDecimal price;
public final BigDecimal amount;
public final String order_type;
public CexioPlaceOrderRequest(
CexIOOrder.Type type, BigDecimal price, BigDecimal amount, String orderType) {
this.type = type;
this.price = price;
this.amount = amount;
this.order_type = orderType;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy