
org.knowm.xchange.binance.dto.account.WapiResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-binance Show documentation
Show all versions of xchange-binance Show documentation
Development fork. Not for general use.
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