
com.xeiam.xchange.hitbtc.dto.HitbtcBaseResponse 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 com.xeiam.xchange.hitbtc.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author kpysniak
*/
public class HitbtcBaseResponse {
@JsonProperty("code")
private String code;
@JsonProperty("message")
private String message;
public String getCode() {
return code;
}
public String getMessage() {
return message;
}
@Override
public String toString() {
return "HitbtcBaseResponse{" + "code='" + code + '\'' + ", message='" + message + '\'' + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy