org.knowm.xchange.poloniex.dto.trade.PoloniexGenerateNewAddressResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-poloniex Show documentation
Show all versions of xchange-poloniex Show documentation
XChange implementation for the Poloniex Exchange
package org.knowm.xchange.poloniex.dto.trade;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
public class PoloniexGenerateNewAddressResponse {
private boolean success;
private String address;
@JsonCreator
public PoloniexGenerateNewAddressResponse(
@JsonProperty("success") Boolean success, @JsonProperty("response") String address) {
this.success = success;
this.address = address;
}
public boolean success() {
return success;
}
public String getAddress() {
return address;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy