package com.xcong.excoin.utils.api.response;
|
public class KlineReturn {
|
|
|
private long time;
|
private float open;
|
private float high;
|
private float low;
|
private float close;
|
private float volume;
|
|
private float amount;
|
// private int count;
|
|
|
public float getOpen() {
|
return open;
|
}
|
public void setOpen(float open) {
|
this.open = open;
|
}
|
public float getClose() {
|
return close;
|
}
|
public void setClose(float close) {
|
this.close = close;
|
}
|
public float getLow() {
|
return low;
|
}
|
public void setLow(float low) {
|
this.low = low;
|
}
|
public float getHigh() {
|
return high;
|
}
|
public void setHigh(float high) {
|
this.high = high;
|
}
|
public long getTime() {
|
return time;
|
}
|
public void setTime(long time) {
|
this.time = time;
|
}
|
public float getVolume() {
|
return volume;
|
}
|
public void setVolume(float volume) {
|
this.volume = volume;
|
}
|
public float getAmount() {
|
return amount;
|
}
|
public void setAmount(float amount) {
|
this.amount = amount;
|
}
|
@Override
|
public String toString() {
|
return "KlineReturn [time=" + time + ", open=" + open + ", high=" + high + ", low=" + low + ", close=" + close
|
+ ", volume=" + volume + "]";
|
}
|
|
|
|
}
|