File Coverage

blib/lib/Paws/DeviceFarm/UniqueProblemsByExecutionResultMap.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Paws::DeviceFarm::UniqueProblemsByExecutionResultMap;
2 1     1   533 use Moose;
  1         4  
  1         11  
3             with 'Paws::API::MapParser';
4              
5 1     1   5014 use MooseX::ClassAttribute;
  1         3  
  1         12  
6             class_has xml_keys =>(is => 'ro', default => 'key');
7             class_has xml_values =>(is => 'ro', default => 'value');
8              
9             has ERRORED => (is => 'ro', isa => 'ArrayRef[Paws::DeviceFarm::UniqueProblem]');
10             has FAILED => (is => 'ro', isa => 'ArrayRef[Paws::DeviceFarm::UniqueProblem]');
11             has PASSED => (is => 'ro', isa => 'ArrayRef[Paws::DeviceFarm::UniqueProblem]');
12             has PENDING => (is => 'ro', isa => 'ArrayRef[Paws::DeviceFarm::UniqueProblem]');
13             has SKIPPED => (is => 'ro', isa => 'ArrayRef[Paws::DeviceFarm::UniqueProblem]');
14             has STOPPED => (is => 'ro', isa => 'ArrayRef[Paws::DeviceFarm::UniqueProblem]');
15             has WARNED => (is => 'ro', isa => 'ArrayRef[Paws::DeviceFarm::UniqueProblem]');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::DeviceFarm::UniqueProblemsByExecutionResultMap
23              
24             =head1 USAGE
25              
26             This class represents one of two things:
27              
28             =head3 Arguments in a call to a service
29              
30             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
31             Each attribute should be used as a named argument in the calls that expect this type of object.
32              
33             As an example, if Att1 is expected to be a Paws::DeviceFarm::UniqueProblemsByExecutionResultMap object:
34              
35             $service_obj->Method(Att1 => { ERRORED => $value, ..., WARNED => $value });
36              
37             =head3 Results returned from an API call
38              
39             Use accessors for each attribute. If Att1 is expected to be an Paws::DeviceFarm::UniqueProblemsByExecutionResultMap object:
40              
41             $result = $service_obj->Method(...);
42             $result->Att1->ERRORED
43              
44             =head1 DESCRIPTION
45              
46             This class has no description
47              
48             =head1 ATTRIBUTES
49              
50              
51             =head2 ERRORED => ArrayRef[L<Paws::DeviceFarm::UniqueProblem>]
52              
53              
54             =head2 FAILED => ArrayRef[L<Paws::DeviceFarm::UniqueProblem>]
55              
56              
57             =head2 PASSED => ArrayRef[L<Paws::DeviceFarm::UniqueProblem>]
58              
59              
60             =head2 PENDING => ArrayRef[L<Paws::DeviceFarm::UniqueProblem>]
61              
62              
63             =head2 SKIPPED => ArrayRef[L<Paws::DeviceFarm::UniqueProblem>]
64              
65              
66             =head2 STOPPED => ArrayRef[L<Paws::DeviceFarm::UniqueProblem>]
67              
68              
69             =head2 WARNED => ArrayRef[L<Paws::DeviceFarm::UniqueProblem>]
70              
71              
72              
73             =head1 SEE ALSO
74              
75             This class forms part of L<Paws>, describing an object used in L<Paws::DeviceFarm>
76              
77             =head1 BUGS and CONTRIBUTIONS
78              
79             The source code is located here: https://github.com/pplu/aws-sdk-perl
80              
81             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
82              
83             =cut
84