File Coverage

blib/lib/Paws/MTurk/ReviewActionDetail.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::ReviewActionDetail;
2 1     1   488 use Moose;
  1         2  
  1         8  
3             has ActionId => (is => 'ro', isa => 'Str');
4             has ActionName => (is => 'ro', isa => 'Str');
5             has CompleteTime => (is => 'ro', isa => 'Str');
6             has ErrorCode => (is => 'ro', isa => 'Str');
7             has Result => (is => 'ro', isa => 'Str');
8             has Status => (is => 'ro', isa => 'Str');
9             has TargetId => (is => 'ro', isa => 'Str');
10             has TargetType => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::MTurk::ReviewActionDetail
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::MTurk::ReviewActionDetail object:
29              
30             $service_obj->Method(Att1 => { ActionId => $value, ..., TargetType => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::MTurk::ReviewActionDetail object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->ActionId
38              
39             =head1 DESCRIPTION
40              
41             Both the AssignmentReviewReport and the HITReviewReport elements
42             contains the ReviewActionDetail data structure. This structure is
43             returned multiple times for each action specified in the Review Policy.
44              
45             =head1 ATTRIBUTES
46              
47              
48             =head2 ActionId => Str
49              
50             The unique identifier for the action.
51              
52              
53             =head2 ActionName => Str
54              
55             The nature of the action itself. The Review Policy is responsible for
56             examining the HIT and Assignments, emitting results, and deciding which
57             other actions will be necessary.
58              
59              
60             =head2 CompleteTime => Str
61              
62             The date when the action was completed.
63              
64              
65             =head2 ErrorCode => Str
66              
67             Present only when the Results have a FAILED Status.
68              
69              
70             =head2 Result => Str
71              
72             A description of the outcome of the review.
73              
74              
75             =head2 Status => Str
76              
77             The current disposition of the action: INTENDED, SUCCEEDED, FAILED, or
78             CANCELLED.
79              
80              
81             =head2 TargetId => Str
82              
83             The specific HITId or AssignmentID targeted by the action.
84              
85              
86             =head2 TargetType => Str
87              
88             The type of object in TargetId.
89              
90              
91              
92             =head1 SEE ALSO
93              
94             This class forms part of L<Paws>, describing an object used in L<Paws::MTurk>
95              
96             =head1 BUGS and CONTRIBUTIONS
97              
98             The source code is located here: https://github.com/pplu/aws-sdk-perl
99              
100             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
101              
102             =cut
103