
estonlabs.cxtl.exchanges.binance.fapi.domain.ExchangeInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxtl Show documentation
Show all versions of cxtl Show documentation
CXTL – Crypto eXchange Trading Library
The newest version!
package estonlabs.cxtl.exchanges.binance.fapi.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import estonlabs.cxtl.exchanges.a.specification.domain.Ticker;
import lombok.Data;
import lombok.Getter;
import lombok.ToString;
import java.util.List;
@Getter
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@ToString
public class ExchangeInfo extends Response{
@JsonProperty("timezone")
private String timezone;
@JsonProperty("serverTime")
private long serverTime;
@JsonProperty("futuresType")
private String futuresType;
@JsonProperty("rateLimits")
private List rateLimits;
@JsonProperty("exchangeFilters")
private List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy