package WebService::ForecastIo::Alert; use Moo; use Types::Standard -all; use Types::URI 'Uri'; use Types::DateTime -all; use namespace::clean; has title => ( is => 'ro', isa => Str, ); has expires => ( is => 'ro', isa => DateTimeUTC, coerce => 1, ); has uri => ( is => 'ro', isa => Uri, coerce => Uri->coercion, ); 1;