org.knowm.xchange.coinegg.dto.CoinEggResult 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;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CoinEggResult {
private final V data;
private final boolean result;
public CoinEggResult(@JsonProperty("result") boolean result, @JsonProperty("data") V data) {
// TODO: Some Validation - See GatecoinResult.java
this.result = result;
this.data = data;
}
public V getData() {
return data;
}
public boolean getResult() {
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy