diff --git a/src/main/java/com/litesoftwares/coingecko/domain/Coins/CoinMarkets.java b/src/main/java/com/litesoftwares/coingecko/domain/Coins/CoinMarkets.java index d40b946..9f68b27 100644 --- a/src/main/java/com/litesoftwares/coingecko/domain/Coins/CoinMarkets.java +++ b/src/main/java/com/litesoftwares/coingecko/domain/Coins/CoinMarkets.java @@ -44,12 +44,20 @@ public class CoinMarkets { private BigDecimal circulatingSupply; @JsonProperty("total_supply") private BigDecimal totalSupply; + @JsonProperty("max_supply") + private BigDecimal maxSupply; @JsonProperty("ath") private BigDecimal ath; @JsonProperty("ath_change_percentage") private BigDecimal athChangePercentage; @JsonProperty("ath_date") private String athDate; + @JsonProperty("atl") + private BigDecimal atl; + @JsonProperty("atl_change_percentage") + private BigDecimal atlChangePercentage; + @JsonProperty("atl_date") + private String atlDate; @JsonProperty("roi") private Roi roi; @JsonProperty("last_updated") @@ -58,6 +66,17 @@ public class CoinMarkets { private SparklineIn7d sparklineIn7d; @JsonProperty("price_change_percentage_1h_in_currency") private BigDecimal priceChangePercentage1hInCurrency; - + @JsonProperty("price_change_percentage_24h_in_currency") + private BigDecimal priceChangePercentage24hInCurrency; + @JsonProperty("price_change_percentage_7d_in_currency") + private BigDecimal priceChangePercentage7dInCurrency; + @JsonProperty("price_change_percentage_14d_in_currency") + private BigDecimal priceChangePercentage14dInCurrency; + @JsonProperty("price_change_percentage_30d_in_currency") + private BigDecimal priceChangePercentage30dInCurrency; + @JsonProperty("price_change_percentage_200d_in_currency") + private BigDecimal priceChangePercentage200dInCurrency; + @JsonProperty("price_change_percentage_1y_in_currency") + private BigDecimal priceChangePercentage1yInCurrency; }