File Coverage

blib/lib/Paws/SMS/GetServersResponse.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::SMS::GetServersResponse;
3 1     1   331 use Moose;
  1         2  
  1         6  
4             has LastModifiedOn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lastModifiedOn' );
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
6             has ServerCatalogStatus => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'serverCatalogStatus' );
7             has ServerList => (is => 'ro', isa => 'ArrayRef[Paws::SMS::Server]', traits => ['NameInRequest'], request_name => 'serverList' );
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::SMS::GetServersResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 LastModifiedOn => Str
21              
22              
23              
24              
25             =head2 NextToken => Str
26              
27              
28              
29              
30             =head2 ServerCatalogStatus => Str
31              
32              
33              
34             Valid values are: C<"NOT_IMPORTED">, C<"IMPORTING">, C<"AVAILABLE">, C<"DELETED">, C<"EXPIRED">
35             =head2 ServerList => ArrayRef[L<Paws::SMS::Server>]
36              
37              
38              
39              
40             =head2 _request_id => Str
41              
42              
43             =cut
44              
45             1;