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

com.binance.api.client.domain.event.ListenKey Maven / Gradle / Ivy

The newest version!
package com.binance.api.client.domain.event;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Dummy type to wrap a listen key from a server response.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class ListenKey {

  private String listenKey;

  public String getListenKey() {
    return listenKey;
  }

  public void setListenKey(String listenKey) {
    this.listenKey = listenKey;
  }

  @Override
  public String toString() {
    return listenKey;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy