From a9c5282bdc2cb9e3b057c5ed4bc573e9734b722b Mon Sep 17 00:00:00 2001 From: B3S23 Date: Wed, 5 Mar 2025 03:50:08 +0300 Subject: [PATCH] Update app/src/main/java/ru/vendetti/bitcoin_summarizer/GlobalResponse.kt --- .../java/ru/vendetti/bitcoin_summarizer/GlobalResponse.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/ru/vendetti/bitcoin_summarizer/GlobalResponse.kt b/app/src/main/java/ru/vendetti/bitcoin_summarizer/GlobalResponse.kt index 80d1f49..56878d1 100644 --- a/app/src/main/java/ru/vendetti/bitcoin_summarizer/GlobalResponse.kt +++ b/app/src/main/java/ru/vendetti/bitcoin_summarizer/GlobalResponse.kt @@ -4,8 +4,8 @@ import com.google.gson.annotations.SerializedName // Данные data class GlobalResponse( - @SerializedName("active_currencies") val activeCryptocurrencies: String, - @SerializedName("total_market_cap_usd") val totalMarketCapUsd: String, - @SerializedName("total_24h_volume_usd") val total24hVolumeUsd: String, - @SerializedName("bitcoin_percentage_of_market_cap") val bitcoinPercentageOfMarketCap: String + @SerializedName("active_currencies") val activeCryptocurrencies: String = "", + @SerializedName("total_market_cap_usd") val totalMarketCapUsd: String = "", + @SerializedName("total_24h_volume_usd") val total24hVolumeUsd: String = "", + @SerializedName("bitcoin_percentage_of_market_cap") val bitcoinPercentageOfMarketCap: String = "" ) \ No newline at end of file