in sample-app/backend/src/main/java/co/elastic/apm/android/sample/backend/data/ForecastResponse.java [17:22]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ForecastResponse that = (ForecastResponse) o;
return Objects.equals(currentWeather, that.currentWeather);
}