![JAR search and dependency download from the Maven repository](/logo.png)
org.knowm.xchange.kucoin.dto.response.AllTickersTickerResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-kucoin Show documentation
Show all versions of xchange-kucoin Show documentation
XChange implementation for the Kucoin Exchange
package org.knowm.xchange.kucoin.dto.response;
import java.math.BigDecimal;
import lombok.Data;
@Data
public class AllTickersTickerResponse {
private String symbol;
private BigDecimal high;
private BigDecimal vol;
private BigDecimal last;
private BigDecimal low;
private BigDecimal buy;
private BigDecimal sell;
private BigDecimal changePrice;
private BigDecimal changeRate;
private BigDecimal volValue;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy