File Coverage

blib/lib/Paws/CognitoSync/ListDatasetsResponse.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::CognitoSync::ListDatasetsResponse;
3 1     1   415 use Moose;
  1         3  
  1         8  
4             has Count => (is => 'ro', isa => 'Int');
5             has Datasets => (is => 'ro', isa => 'ArrayRef[Paws::CognitoSync::Dataset]');
6             has NextToken => (is => 'ro', isa => 'Str');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::CognitoSync::ListDatasetsResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Count => Int
21              
22             Number of datasets returned.
23              
24              
25             =head2 Datasets => ArrayRef[L<Paws::CognitoSync::Dataset>]
26              
27             A set of datasets.
28              
29              
30             =head2 NextToken => Str
31              
32             A pagination token for obtaining the next page of results.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39