io.contek.invoker.bybitinverse.api.rest.common.ResponseWrapper Maven / Gradle / Ivy
package io.contek.invoker.bybitinverse.api.rest.common;
import javax.annotation.concurrent.NotThreadSafe;
@NotThreadSafe
public abstract class ResponseWrapper {
public Integer ret_code;
public String ret_msg;
public String ext_code;
public String ext_info;
public Double time_now;
public Integer rate_limit_status;
public Long rate_limit_reset_ms;
public Integer rate_limit;
public R result;
}