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

com.xeiam.xchange.hitbtc.dto.HitbtcBaseResponse Maven / Gradle / Ivy

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