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

org.knowm.xchange.cexio.dto.CexioPlaceOrderRequest Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
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