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

io.contek.invoker.bybit.api.websocket.common.WebSocketRequest Maven / Gradle / Ivy

package io.contek.invoker.bybit.api.websocket.common;

import io.contek.invoker.commons.api.websocket.AnyWebSocketMessage;

import javax.annotation.concurrent.NotThreadSafe;
import java.util.ArrayList;
import java.util.List;

@NotThreadSafe
public final class WebSocketRequest extends AnyWebSocketMessage {

  public String op;
  public List args = new ArrayList<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy