Weather::YR::Locationforecast::Forecast::Precip - Stores precipitation data about a


Weather-YR documentation Contained in the Weather-YR distribution.

Index


Code Index:

NAME

Top

Weather::YR::Locationforecast::Forecast::Precip - Stores precipitation data about a forecast

DESCRIPTION

Top

This module stores symbol data about a forecast.

METHODS

Top

unit

Accessor for the unit description of the precipitation value.

value

Accessor for the value of precipitation in weight of the unit.

SEE ALSO

Top

Weather::YR::Locationforecast, Weather::YR::Locationforecast::Forecast

AUTHOR

Top

Knut-Olav, <knut-olav@hoven.ws>

COPYRIGHT AND LICENSE

Top


Weather-YR documentation Contained in the Weather-YR distribution.
package Weather::YR::Locationforecast::Forecast::Precip;

use strict;
use warnings;

use base qw/
    Weather::YR::Locationforecast::Forecast
    Class::Accessor::Fast
/;

__PACKAGE__->mk_accessors(qw/
    unit
    value
/);

1;