File Coverage

blib/lib/Paws/StorageGateway/ListTapesOutput.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::StorageGateway::ListTapesOutput;
3 1     1   506 use Moose;
  1         3  
  1         10  
4             has Marker => (is => 'ro', isa => 'Str');
5             has TapeInfos => (is => 'ro', isa => 'ArrayRef[Paws::StorageGateway::TapeInfo]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::StorageGateway::ListTapesOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Marker => Str
19              
20             A string that indicates the position at which to begin returning the
21             next list of tapes. Use the marker in your next request to continue
22             pagination of tapes. If there are no more tapes to list, this element
23             does not appear in the response body.
24              
25              
26             =head2 TapeInfos => ArrayRef[L<Paws::StorageGateway::TapeInfo>]
27              
28              
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35              
36             1;