File Coverage

blib/lib/Paws/StorageGateway/DescribeSnapshotScheduleOutput.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::DescribeSnapshotScheduleOutput;
3 1     1   642 use Moose;
  1         3  
  1         9  
4             has Description => (is => 'ro', isa => 'Str');
5             has RecurrenceInHours => (is => 'ro', isa => 'Int');
6             has StartAt => (is => 'ro', isa => 'Int');
7             has Timezone => (is => 'ro', isa => 'Str');
8             has VolumeARN => (is => 'ro', isa => 'Str');
9              
10             has _request_id => (is => 'ro', isa => 'Str');
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::StorageGateway::DescribeSnapshotScheduleOutput
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 Description => Str
22              
23              
24              
25              
26             =head2 RecurrenceInHours => Int
27              
28              
29              
30              
31             =head2 StartAt => Int
32              
33              
34              
35              
36             =head2 Timezone => Str
37              
38              
39              
40              
41             =head2 VolumeARN => Str
42              
43              
44              
45              
46             =head2 _request_id => Str
47              
48              
49             =cut
50              
51             1;