
org.knowm.xchange.binance.dto.meta.exchangeinfo.RateLimit 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 RateLimit {
private String limit;
private String interval;
private String rateLimitType;
public String getLimit() {
return limit;
}
public void setLimit(String limit) {
this.limit = limit;
}
public String getInterval() {
return interval;
}
public void setInterval(String interval) {
this.interval = interval;
}
public String getRateLimitType() {
return rateLimitType;
}
public void setRateLimitType(String rateLimitType) {
this.rateLimitType = rateLimitType;
}
@Override
public String toString() {
return "ClassPojo [limit = "
+ limit
+ ", interval = "
+ interval
+ ", rateLimitType = "
+ rateLimitType
+ "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy