org.knowm.xchange.hitbtc.v2.dto.HitbtcInternalTransferResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-hitbtc Show documentation
Show all versions of xchange-hitbtc Show documentation
XChange implementation for Hitbtc exchange
The newest version!
package org.knowm.xchange.hitbtc.v2.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
public class HitbtcInternalTransferResponse {
public final String id;
public final HitbtcError error;
public HitbtcInternalTransferResponse(
@JsonProperty("id") String id, @JsonProperty("error") HitbtcError error) {
this.id = id;
this.error = error;
}
@Override
public String toString() {
return "InternalTransferResponse{" + "id='" + id + '\'' + ", error=" + error + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy