diff --git a/openweathermaphelper/src/main/java/com/kwabenaberko/openweathermaplib/models/threehourforecast/Precipitation.java b/openweathermaphelper/src/main/java/com/kwabenaberko/openweathermaplib/models/threehourforecast/Precipitation.java index 3796c76..060ae55 100644 --- a/openweathermaphelper/src/main/java/com/kwabenaberko/openweathermaplib/models/threehourforecast/Precipitation.java +++ b/openweathermaphelper/src/main/java/com/kwabenaberko/openweathermaplib/models/threehourforecast/Precipitation.java @@ -5,13 +5,13 @@ public class Precipitation { @SerializedName("3h") - private double threeHour; + private Double threeHour; - public double get3h() { + public Double get3h() { return threeHour; } - public void set3h(double threeHour) { + public void set3h(Double threeHour) { this.threeHour = threeHour; } }