io.contek.invoker.bybit.api.rest.common.ResponseWrapper Maven / Gradle / Ivy
The newest version!
package io.contek.invoker.bybit.api.rest.common;
import javax.annotation.concurrent.NotThreadSafe;
@NotThreadSafe
public abstract class ResponseWrapper {
public Integer retCode;
public String retMsg;
public Long time;
public R result;
}