
org.knowm.xchange.binance.dto.meta.exchangeinfo.BinanceExchangeInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-binance Show documentation
Show all versions of xchange-binance Show documentation
Development fork. Not for general use.
The newest version!
package org.knowm.xchange.binance.dto.meta.exchangeinfo;
public class BinanceExchangeInfo {
private String timezone;
private Symbol[] symbols;
private String serverTime;
private RateLimit[] rateLimits;
private String[] exchangeFilters;
public String getTimezone() {
return timezone;
}
public void setTimezone(String timezone) {
this.timezone = timezone;
}
public Symbol[] getSymbols() {
return symbols;
}
public void setSymbols(Symbol[] symbols) {
this.symbols = symbols;
}
public String getServerTime() {
return serverTime;
}
public void setServerTime(String serverTime) {
this.serverTime = serverTime;
}
public RateLimit[] getRateLimits() {
return rateLimits;
}
public void setRateLimits(RateLimit[] rateLimits) {
this.rateLimits = rateLimits;
}
public String[] getExchangeFilters() {
return exchangeFilters;
}
public void setExchangeFilters(String[] exchangeFilters) {
this.exchangeFilters = exchangeFilters;
}
@Override
public String toString() {
return "ClassPojo [timezone = "
+ timezone
+ ", symbols = "
+ symbols
+ ", serverTime = "
+ serverTime
+ ", rateLimits = "
+ rateLimits
+ ", exchangeFilters = "
+ exchangeFilters
+ "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy