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

org.knowm.xchange.huobi.dto.account.results.HuobiDepositAddressResult Maven / Gradle / Ivy

The newest version!
package org.knowm.xchange.huobi.dto.account.results;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.huobi.dto.HuobiResult;

public class HuobiDepositAddressResult extends HuobiResult {
  @JsonCreator
  public HuobiDepositAddressResult(
      @JsonProperty("status") String status,
      @JsonProperty("data") String data,
      @JsonProperty("err-code") String errCode,
      @JsonProperty("err-msg") String errMsg) {
    super(status, errCode, errMsg, data);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy