org.knowm.xchange.huobi.dto.account.results.HuobiDepositAddressV2Result Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-huobi Show documentation
Show all versions of xchange-huobi Show documentation
XChange implementation for the Huobi Exchange
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