File Coverage

blib/lib/Paws/CognitoSync/ListRecordsResponse.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::ListRecordsResponse;
3 1     1   638 use Moose;
  1         5  
  1         7  
4             has Count => (is => 'ro', isa => 'Int');
5             has DatasetDeletedAfterRequestedSyncCount => (is => 'ro', isa => 'Bool');
6             has DatasetExists => (is => 'ro', isa => 'Bool');
7             has DatasetSyncCount => (is => 'ro', isa => 'Int');
8             has LastModifiedBy => (is => 'ro', isa => 'Str');
9             has MergedDatasetNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
10             has NextToken => (is => 'ro', isa => 'Str');
11             has Records => (is => 'ro', isa => 'ArrayRef[Paws::CognitoSync::Record]');
12             has SyncSessionToken => (is => 'ro', isa => 'Str');
13              
14             has _request_id => (is => 'ro', isa => 'Str');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::CognitoSync::ListRecordsResponse
22              
23             =head1 ATTRIBUTES
24              
25              
26             =head2 Count => Int
27              
28             Total number of records.
29              
30              
31             =head2 DatasetDeletedAfterRequestedSyncCount => Bool
32              
33             A boolean value specifying whether to delete the dataset locally.
34              
35              
36             =head2 DatasetExists => Bool
37              
38             Indicates whether the dataset exists.
39              
40              
41             =head2 DatasetSyncCount => Int
42              
43             Server sync count for this dataset.
44              
45              
46             =head2 LastModifiedBy => Str
47              
48             The user/device that made the last change to this record.
49              
50              
51             =head2 MergedDatasetNames => ArrayRef[Str|Undef]
52              
53             Names of merged datasets.
54              
55              
56             =head2 NextToken => Str
57              
58             A pagination token for obtaining the next page of results.
59              
60              
61             =head2 Records => ArrayRef[L<Paws::CognitoSync::Record>]
62              
63             A list of all records.
64              
65              
66             =head2 SyncSessionToken => Str
67              
68             A token containing a session ID, identity ID, and expiration.
69              
70              
71             =head2 _request_id => Str
72              
73              
74             =cut
75