org.knowm.xchange.livecoin.dto.account.LivecoinWalletAddressResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-livecoin Show documentation
Show all versions of xchange-livecoin Show documentation
A convenient way to buy and sell Bitcoin
package org.knowm.xchange.livecoin.dto.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.livecoin.dto.LivecoinBaseResponse;
/** @author walec51 */
public class LivecoinWalletAddressResponse extends LivecoinBaseResponse {
private final String wallet;
public LivecoinWalletAddressResponse(
@JsonProperty("success") Boolean success, @JsonProperty("wallet") String wallet) {
super(success);
this.wallet = wallet;
}
public String getWallet() {
return wallet;
}
}