File Coverage

blib/lib/Paws/WorkDocs/DescribeFolderContentsResponse.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::WorkDocs::DescribeFolderContentsResponse;
3 1     1   647 use Moose;
  1         3  
  1         10  
4             has Documents => (is => 'ro', isa => 'ArrayRef[Paws::WorkDocs::DocumentMetadata]');
5             has Folders => (is => 'ro', isa => 'ArrayRef[Paws::WorkDocs::FolderMetadata]');
6             has Marker => (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::WorkDocs::DescribeFolderContentsResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Documents => ArrayRef[L<Paws::WorkDocs::DocumentMetadata>]
21              
22             The documents in the specified folder.
23              
24              
25             =head2 Folders => ArrayRef[L<Paws::WorkDocs::FolderMetadata>]
26              
27             The subfolders in the specified folder.
28              
29              
30             =head2 Marker => Str
31              
32             The marker to use when requesting the next set of results. If there are
33             no additional results, the string is empty.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40