GCloud-CLIWrapper

 view release on metacpan or  search on metacpan

lib/GCloud/CLIWrapper/Result.pm  view on Meta::CPAN

package GCloud::CLIWrapper::Result {
  use Moose;
  has rc => (is => 'ro', isa => 'Int', required => 1);
  has output => (is => 'ro', isa => 'Str');
  has json => (is => 'ro', isa => 'HashRef');
 
  has success => (is => 'ro', isa => 'Bool', lazy => 1, default => sub {
    my $self = shift;
    $self->rc == 0;
  });
}
1;



( run in 1.509 second using v1.01-cache-2.11-cpan-39bf76dae61 )