package WebService::ForecastIo::DataPoint; use Moo; use Types::DateTime -all; use Types::Standard -all; use namespace::clean; has [qw( time sunriseTime sunsetTime precipIntensityMaxTime temperatureMinTime temperatureMaxTime )] => ( is => 'ro', isa => DateTimeUTC, coerce => 1, ); has [qw(summary icon precipType)] => ( is => 'ro', isa => Str, ); has [qw( precipIntensity precipIntensityMax precipProbability precipAccumulation temperature temperatureMin temperatureMax dewPoint humidity windSpeed windBearing cloudCover pressure visibility ozone )] => ( is => 'ro', isa => Num, ); 1;