org.knowm.xchange.okcoin.dto.trade.OkCoinBatchTradeResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-okcoin Show documentation
Show all versions of xchange-okcoin Show documentation
XChange implementation for OKCoin
package org.knowm.xchange.okcoin.dto.trade;
import com.fasterxml.jackson.annotation.JsonProperty;
public class OkCoinBatchTradeResult {
private final String success;
private final String error;
public OkCoinBatchTradeResult(
@JsonProperty("success") final String success, @JsonProperty("error") final String error) {
this.success = success;
this.error = error;
}
public String getSuccess() {
return success;
}
public String getError() {
return error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy