Package net.troja.eve.esi.model
Class MarketHistoryResponse
- java.lang.Object
-
- net.troja.eve.esi.model.MarketHistoryResponse
-
- All Implemented Interfaces:
Serializable
public class MarketHistoryResponse extends Object implements Serializable
200 ok object- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_AVERAGEstatic StringSERIALIZED_NAME_DATEstatic StringSERIALIZED_NAME_HIGHESTstatic StringSERIALIZED_NAME_LOWESTstatic StringSERIALIZED_NAME_ORDER_COUNTstatic StringSERIALIZED_NAME_VOLUME
-
Constructor Summary
Constructors Constructor Description MarketHistoryResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MarketHistoryResponseaverage(Double average)MarketHistoryResponsedate(java.time.LocalDate date)booleanequals(Object o)DoublegetAverage()average numberjava.time.LocalDategetDate()The date of this historical statistic entryDoublegetHighest()highest numberDoublegetLowest()lowest numberLonggetOrderCount()Total number of orders happened that dayLonggetVolume()TotalinthashCode()MarketHistoryResponsehighest(Double highest)MarketHistoryResponselowest(Double lowest)MarketHistoryResponseorderCount(Long orderCount)voidsetAverage(Double average)voidsetDate(java.time.LocalDate date)voidsetHighest(Double highest)voidsetLowest(Double lowest)voidsetOrderCount(Long orderCount)voidsetVolume(Long volume)StringtoString()MarketHistoryResponsevolume(Long volume)
-
-
-
Field Detail
-
SERIALIZED_NAME_AVERAGE
public static final String SERIALIZED_NAME_AVERAGE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DATE
public static final String SERIALIZED_NAME_DATE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_HIGHEST
public static final String SERIALIZED_NAME_HIGHEST
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_LOWEST
public static final String SERIALIZED_NAME_LOWEST
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ORDER_COUNT
public static final String SERIALIZED_NAME_ORDER_COUNT
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_VOLUME
public static final String SERIALIZED_NAME_VOLUME
- See Also:
- Constant Field Values
-
-
Method Detail
-
average
public MarketHistoryResponse average(Double average)
-
getAverage
public Double getAverage()
average number- Returns:
- average
-
setAverage
public void setAverage(Double average)
-
date
public MarketHistoryResponse date(java.time.LocalDate date)
-
getDate
public java.time.LocalDate getDate()
The date of this historical statistic entry- Returns:
- date
-
setDate
public void setDate(java.time.LocalDate date)
-
highest
public MarketHistoryResponse highest(Double highest)
-
getHighest
public Double getHighest()
highest number- Returns:
- highest
-
setHighest
public void setHighest(Double highest)
-
lowest
public MarketHistoryResponse lowest(Double lowest)
-
getLowest
public Double getLowest()
lowest number- Returns:
- lowest
-
setLowest
public void setLowest(Double lowest)
-
orderCount
public MarketHistoryResponse orderCount(Long orderCount)
-
getOrderCount
public Long getOrderCount()
Total number of orders happened that day- Returns:
- orderCount
-
setOrderCount
public void setOrderCount(Long orderCount)
-
volume
public MarketHistoryResponse volume(Long volume)
-
getVolume
public Long getVolume()
Total- Returns:
- volume
-
setVolume
public void setVolume(Long volume)
-
-