File Coverage

blib/lib/Paws/ServiceCatalog/SearchProductsOutput.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::ServiceCatalog::SearchProductsOutput;
3 1     1   747 use Moose;
  1         5  
  1         13  
4             has NextPageToken => (is => 'ro', isa => 'Str');
5             has ProductViewAggregations => (is => 'ro', isa => 'Paws::ServiceCatalog::ProductViewAggregations');
6             has ProductViewSummaries => (is => 'ro', isa => 'ArrayRef[Paws::ServiceCatalog::ProductViewSummary]');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::ServiceCatalog::SearchProductsOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 NextPageToken => Str
20              
21             The page token to use to retrieve the next page of results for this
22             operation. If there are no more pages, this value is null.
23              
24              
25             =head2 ProductViewAggregations => L<Paws::ServiceCatalog::ProductViewAggregations>
26              
27             A list of the product view aggregation value objects.
28              
29              
30             =head2 ProductViewSummaries => ArrayRef[L<Paws::ServiceCatalog::ProductViewSummary>]
31              
32             A list of the product view summary objects.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39              
40             1;