File Coverage

blib/lib/Paws/MTurk/ListQualificationTypesResponse.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::ListQualificationTypesResponse;
3 1     1   568 use Moose;
  1         4  
  1         11  
4             has NextToken => (is => 'ro', isa => 'Str');
5             has NumResults => (is => 'ro', isa => 'Int');
6             has QualificationTypes => (is => 'ro', isa => 'ArrayRef[Paws::MTurk::QualificationType]');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::MTurk::ListQualificationTypesResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 NextToken => Str
20              
21              
22              
23              
24             =head2 NumResults => Int
25              
26             The number of Qualification types on this page in the filtered results
27             list, equivalent to the number of types this operation returns.
28              
29              
30             =head2 QualificationTypes => ArrayRef[L<Paws::MTurk::QualificationType>]
31              
32             The list of QualificationType elements returned by the query.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39              
40             1;