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

info.bitrich.xchangestream.bitmex.dto.BitmexWebSocketSubscriptionMessage Maven / Gradle / Ivy

package info.bitrich.xchangestream.bitmex.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Created by Lukas Zaoralek on 13.11.17.
 */
public class BitmexWebSocketSubscriptionMessage {
    private static final String OP = "op";
    private static final String ARGS = "args";

    @JsonProperty(OP)
    private String op;

    @JsonProperty(ARGS)
    private String[] args;

    public BitmexWebSocketSubscriptionMessage(String op, String[] args) {
        this.op = op;
        this.args = args;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy