File Coverage

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