File Coverage

blib/lib/Paws/MTurk/ListWorkerBlocksResponse.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::ListWorkerBlocksResponse;
3 1     1   590 use Moose;
  1         3  
  1         6  
4             has NextToken => (is => 'ro', isa => 'Str');
5             has NumResults => (is => 'ro', isa => 'Int');
6             has WorkerBlocks => (is => 'ro', isa => 'ArrayRef[Paws::MTurk::WorkerBlock]');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::MTurk::ListWorkerBlocksResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 NextToken => Str
20              
21              
22              
23              
24             =head2 NumResults => Int
25              
26             The number of assignments on the page in the filtered results list,
27             equivalent to the number of assignments returned by this call.
28              
29              
30             =head2 WorkerBlocks => ArrayRef[L<Paws::MTurk::WorkerBlock>]
31              
32             The list of WorkerBlocks, containing the collection of Worker IDs and
33             reasons for blocking.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40              
41             1;