org.knowm.xchange.coinegg.dto.trade.CoinEggTradeAdd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-coinegg Show documentation
Show all versions of xchange-coinegg Show documentation
XChange implementation for the CoinEgg Exchange
The newest version!
package org.knowm.xchange.coinegg.dto.trade;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CoinEggTradeAdd {
private final boolean result;
private final int id;
public CoinEggTradeAdd(@JsonProperty("result") boolean result, @JsonProperty("id") int id) {
this.result = result;
this.id = id;
}
public boolean getResult() {
return result;
}
public int getID() {
return id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy