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

org.knowm.xchange.binance.dto.account.WapiResponse Maven / Gradle / Ivy

The newest version!
package org.knowm.xchange.binance.dto.account;

public abstract class WapiResponse {

  public final boolean success;
  public final String
      msg; // "{\"code\":-1021,\"msg\":\"Timestamp for this request is not valid.\"}"

  public WapiResponse(boolean success, String msg) {
    super();
    this.success = success;
    this.msg = msg;
  }

  public abstract T getData();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy