Weather

class Weather @RestrictTo(value = [RestrictTo.Scope.LIBRARY_GROUP_PREFIX]) constructor(val weatherNow: String, val weatherHigh: String, val weatherLow: String, @DrawableRes val iconResId: Int)

Represents the weather information.

Constructors

Link copied to clipboard
constructor(weatherNow: String, weatherHigh: String, weatherLow: String, @DrawableRes iconResId: Int)

Properties

Link copied to clipboard

The resource ID of the weather icon.

Link copied to clipboard

The high temperature for the day as a string.

Link copied to clipboard

The low temperature for the day as a string.

Link copied to clipboard

The current weather condition as a string.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String