File Coverage

blib/lib/Paws/MTurk/ListReviewPolicyResultsForHITResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::MTurk::ListReviewPolicyResultsForHITResponse;
3 1     1   545 use Moose;
  1         4  
  1         9  
4             has AssignmentReviewPolicy => (is => 'ro', isa => 'Paws::MTurk::ReviewPolicy');
5             has AssignmentReviewReport => (is => 'ro', isa => 'Paws::MTurk::ReviewReport');
6             has HITId => (is => 'ro', isa => 'Str');
7             has HITReviewPolicy => (is => 'ro', isa => 'Paws::MTurk::ReviewPolicy');
8             has HITReviewReport => (is => 'ro', isa => 'Paws::MTurk::ReviewReport');
9             has NextToken => (is => 'ro', isa => 'Str');
10              
11             has _request_id => (is => 'ro', isa => 'Str');
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::MTurk::ListReviewPolicyResultsForHITResponse
18              
19             =head1 ATTRIBUTES
20              
21              
22             =head2 AssignmentReviewPolicy => L<Paws::MTurk::ReviewPolicy>
23              
24             The name of the Assignment-level Review Policy. This contains only the
25             PolicyName element.
26              
27              
28             =head2 AssignmentReviewReport => L<Paws::MTurk::ReviewReport>
29              
30             Contains both ReviewResult and ReviewAction elements for an Assignment.
31              
32              
33             =head2 HITId => Str
34              
35             The HITId of the HIT for which results have been returned.
36              
37              
38             =head2 HITReviewPolicy => L<Paws::MTurk::ReviewPolicy>
39              
40             The name of the HIT-level Review Policy. This contains only the
41             PolicyName element.
42              
43              
44             =head2 HITReviewReport => L<Paws::MTurk::ReviewReport>
45              
46             Contains both ReviewResult and ReviewAction elements for a particular
47             HIT.
48              
49              
50             =head2 NextToken => Str
51              
52              
53              
54              
55             =head2 _request_id => Str
56              
57              
58             =cut
59              
60             1;