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

org.knowm.xchange.poloniex.dto.trade.PoloniexGenerateNewAddressResponse Maven / Gradle / Ivy

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