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

org.knowm.xchange.huobi.dto.account.results.HuobiDepositAddressV2Result 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.HuobiResultV2;
import org.knowm.xchange.huobi.dto.account.HuobiDepositAddress;

public class HuobiDepositAddressV2Result extends HuobiResultV2 {
  @JsonCreator
  public HuobiDepositAddressV2Result(
      @JsonProperty("code") String code,
      @JsonProperty("message") String message,
      @JsonProperty("data") HuobiDepositAddress[] data) {
    super(code, message, data);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy