All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.livecoin.dto.account.LivecoinWalletAddressResponse Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy