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

info.bitrich.xchangestream.okex.dto.OkexSubscribeMessage Maven / Gradle / Ivy

The newest version!
package info.bitrich.xchangestream.okex.dto;

import java.util.List;
import lombok.*;
import org.knowm.xchange.okex.dto.OkexInstType;

@Data
@AllArgsConstructor
public class OkexSubscribeMessage {
  private final String op;
  private final List args;

  @Data
  @AllArgsConstructor
  public static class SubscriptionTopic {
    private final String channel;

    private final OkexInstType instType;

    private final String uly;

    private final String instId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy