File Coverage

blib/lib/Paws/MTurk/ReviewResultDetail.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             package Paws::MTurk::ReviewResultDetail;
2 1     1   482 use Moose;
  1         3  
  1         7  
3             has ActionId => (is => 'ro', isa => 'Str');
4             has Key => (is => 'ro', isa => 'Str');
5             has QuestionId => (is => 'ro', isa => 'Str');
6             has SubjectId => (is => 'ro', isa => 'Str');
7             has SubjectType => (is => 'ro', isa => 'Str');
8             has Value => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::MTurk::ReviewResultDetail
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::MTurk::ReviewResultDetail object:
27              
28             $service_obj->Method(Att1 => { ActionId => $value, ..., Value => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::MTurk::ReviewResultDetail object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->ActionId
36              
37             =head1 DESCRIPTION
38              
39             This data structure is returned multiple times for each result
40             specified in the Review Policy.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 ActionId => Str
46              
47             A unique identifier of the Review action result.
48              
49              
50             =head2 Key => Str
51              
52             Key identifies the particular piece of reviewed information.
53              
54              
55             =head2 QuestionId => Str
56              
57             Specifies the QuestionId the result is describing. Depending on whether
58             the TargetType is a HIT or Assignment this results could specify
59             multiple values. If TargetType is HIT and QuestionId is absent, then
60             the result describes results of the HIT, including the HIT agreement
61             score. If ObjectType is Assignment and QuestionId is absent, then the
62             result describes the Worker's performance on the HIT.
63              
64              
65             =head2 SubjectId => Str
66              
67             The HITID or AssignmentId about which this result was taken. Note that
68             HIT-level Review Policies will often emit results about both the HIT
69             itself and its Assignments, while Assignment-level review policies
70             generally only emit results about the Assignment itself.
71              
72              
73             =head2 SubjectType => Str
74              
75             The type of the object from the SubjectId field.
76              
77              
78             =head2 Value => Str
79              
80             The values of Key provided by the review policies you have selected.
81              
82              
83              
84             =head1 SEE ALSO
85              
86             This class forms part of L<Paws>, describing an object used in L<Paws::MTurk>
87              
88             =head1 BUGS and CONTRIBUTIONS
89              
90             The source code is located here: https://github.com/pplu/aws-sdk-perl
91              
92             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
93              
94             =cut
95