File Coverage

blib/lib/Paws/ApiGateway/SdkResponse.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ApiGateway::SdkResponse;
3 1     1   401 use Moose;
  1         2  
  1         6  
4             has Body => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'body');
5             has ContentDisposition => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'contentDisposition');
6             has ContentType => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'contentType');
7 1     1   6696 use MooseX::ClassAttribute;
  1         3  
  1         9  
8             class_has _stream_param => (is => 'ro', default => 'Body');
9             has _request_id => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::ApiGateway::SdkResponse
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 Body => Str
22              
23             The binary blob response to GetSdk, which contains the generated SDK.
24              
25              
26             =head2 ContentDisposition => Str
27              
28             The content-disposition header value in the HTTP response.
29              
30              
31             =head2 ContentType => Str
32              
33             The content-type header value in the HTTP response.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40