File Coverage

blib/lib/Paws/S3/GetObjectAclOutput.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::S3::GetObjectAclOutput;
3 1     1   452 use Moose;
  1         3  
  1         10  
4             has Grants => (is => 'ro', isa => 'ArrayRef[Paws::S3::Grant]', traits => ['NameInRequest'], request_name => 'AccessControlList');
5             has Owner => (is => 'ro', isa => 'Paws::S3::Owner');
6             has RequestCharged => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-request-charged');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::S3::GetObjectAclOutput
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Grants => ArrayRef[L<Paws::S3::Grant>]
21              
22             A list of grants.
23              
24              
25              
26             =head2 Owner => L<Paws::S3::Owner>
27              
28              
29              
30              
31              
32             =head2 RequestCharged => Str
33              
34              
35              
36             Valid values are: C<"requester">
37              
38              
39             =cut
40