File Coverage

blib/lib/Paws/StorageGateway/DescribeTapesOutput.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::DescribeTapesOutput;
3 1     1   549 use Moose;
  1         3  
  1         9  
4             has Marker => (is => 'ro', isa => 'Str');
5             has Tapes => (is => 'ro', isa => 'ArrayRef[Paws::StorageGateway::Tape]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::StorageGateway::DescribeTapesOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Marker => Str
19              
20             An opaque string which can be used as part of a subsequent
21             DescribeTapes call to retrieve the next page of results.
22              
23             If a response does not contain a marker, then there are no more results
24             to be retrieved.
25              
26              
27             =head2 Tapes => ArrayRef[L<Paws::StorageGateway::Tape>]
28              
29             An array of virtual tape descriptions.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;