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

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

There is a newer version: 5.2.0
Show newest version
package org.knowm.xchange.cexio.dto;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.math.BigDecimal;

public class CexioCancelReplaceOrderRequest extends CexIORequest {

  @JsonProperty("order_id")
  public final String orderId;

  @JsonProperty("type")
  public final String type;

  @JsonProperty("amount")
  public final BigDecimal amount;

  @JsonProperty("price")
  public final BigDecimal price;

  public CexioCancelReplaceOrderRequest(
      String orderId, String type, BigDecimal amount, BigDecimal price) {
    this.orderId = orderId;
    this.type = type;
    this.amount = amount;
    this.price = price;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy