File Coverage

blib/lib/Paws/MTurk/ListReviewPolicyResultsForHIT.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              
2             package Paws::MTurk::ListReviewPolicyResultsForHIT;
3 1     1   422 use Moose;
  1         4  
  1         6  
4             has HITId => (is => 'ro', isa => 'Str', required => 1);
5             has MaxResults => (is => 'ro', isa => 'Int');
6             has NextToken => (is => 'ro', isa => 'Str');
7             has PolicyLevels => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
8             has RetrieveActions => (is => 'ro', isa => 'Bool');
9             has RetrieveResults => (is => 'ro', isa => 'Bool');
10              
11 1     1   5992 use MooseX::ClassAttribute;
  1         2  
  1         9  
12              
13             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListReviewPolicyResultsForHIT');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::MTurk::ListReviewPolicyResultsForHITResponse');
15             class_has _result_key => (isa => 'Str', is => 'ro');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::MTurk::ListReviewPolicyResultsForHIT - Arguments for method ListReviewPolicyResultsForHIT on Paws::MTurk
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method ListReviewPolicyResultsForHIT on the
27             Amazon Mechanical Turk service. Use the attributes of this class
28             as arguments to method ListReviewPolicyResultsForHIT.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListReviewPolicyResultsForHIT.
31              
32             As an example:
33              
34             $service_obj->ListReviewPolicyResultsForHIT(Att1 => $value1, Att2 => $value2, ...);
35              
36             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 B<REQUIRED> HITId => Str
42              
43             The unique identifier of the HIT to retrieve review results for.
44              
45              
46              
47             =head2 MaxResults => Int
48              
49             Limit the number of results returned.
50              
51              
52              
53             =head2 NextToken => Str
54              
55             Pagination token
56              
57              
58              
59             =head2 PolicyLevels => ArrayRef[Str|Undef]
60              
61             The Policy Level(s) to retrieve review results for - HIT or Assignment.
62             If omitted, the default behavior is to retrieve all data for both
63             policy levels. For a list of all the described policies, see Review
64             Policies.
65              
66              
67              
68             =head2 RetrieveActions => Bool
69              
70             Specify if the operation should retrieve a list of the actions taken
71             executing the Review Policies and their outcomes.
72              
73              
74              
75             =head2 RetrieveResults => Bool
76              
77             Specify if the operation should retrieve a list of the results computed
78             by the Review Policies.
79              
80              
81              
82              
83             =head1 SEE ALSO
84              
85             This class forms part of L<Paws>, documenting arguments for method ListReviewPolicyResultsForHIT in L<Paws::MTurk>
86              
87             =head1 BUGS and CONTRIBUTIONS
88              
89             The source code is located here: https://github.com/pplu/aws-sdk-perl
90              
91             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
92              
93             =cut
94