![JAR search and dependency download from the Maven repository](/logo.png)
org.oxerr.peatio.rest.dto.KWithPendingTrades Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of peatio-client-rest Show documentation
Show all versions of peatio-client-rest Show documentation
Client for <a href="http://peat.io">Peatio</a> RESTful API.
The newest version!
package org.oxerr.peatio.rest.dto;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonProperty;
public class KWithPendingTrades extends BaseObject {
private final BigDecimal[][] k;
private final Trade[] trades;
public KWithPendingTrades(
@JsonProperty("k") BigDecimal[][] k,
@JsonProperty("trades") Trade[] trades) {
this.k = k;
this.trades = trades;
}
public BigDecimal[][] getK() {
return k;
}
public Trade[] getTrades() {
return trades;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy