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

org.knowm.xchange.kucoin.dto.response.WebsocketResponse Maven / Gradle / Ivy

The newest version!
package org.knowm.xchange.kucoin.dto.response;

import java.util.List;
import lombok.Data;

@Data
public class WebsocketResponse {
  private String token;
  private List instanceServers;

  @Data
  public static class InstanceServer {
    private String endpoint;
    private boolean encrypt;
    private String protocol;
    private int pingInterval;
    private int pingTimeout;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy