io.contek.invoker.hbdminverse.api.websocket.common.notification.NotificationWebSocketResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of invoker-hbdminverse-api Show documentation
Show all versions of invoker-hbdminverse-api Show documentation
Huobi Derivative Inverse Java API
package io.contek.invoker.hbdminverse.api.websocket.common.notification;
import com.google.gson.annotations.SerializedName;
import javax.annotation.concurrent.NotThreadSafe;
@NotThreadSafe
public abstract class NotificationWebSocketResponse extends NotificationWebSocketInboundMessage {
public String cid;
@SerializedName("err-code")
public int err_code;
@SerializedName("err-msg")
public String err_msg;
}