File Coverage

blib/lib/Paws/ServiceCatalog/ProductViewFilters.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             package Paws::ServiceCatalog::ProductViewFilters;
2 1     1   463 use Moose;
  1         5  
  1         12  
3             with 'Paws::API::MapParser';
4              
5 1     1   4895 use MooseX::ClassAttribute;
  1         2  
  1         13  
6             class_has xml_keys =>(is => 'ro', default => 'key');
7             class_has xml_values =>(is => 'ro', default => 'value');
8              
9             has FullTextSearch => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
10             has Owner => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
11             has ProductType => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
12             has SourceProductId => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::ServiceCatalog::ProductViewFilters
20              
21             =head1 USAGE
22              
23             This class represents one of two things:
24              
25             =head3 Arguments in a call to a service
26              
27             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
28             Each attribute should be used as a named argument in the calls that expect this type of object.
29              
30             As an example, if Att1 is expected to be a Paws::ServiceCatalog::ProductViewFilters object:
31              
32             $service_obj->Method(Att1 => { FullTextSearch => $value, ..., SourceProductId => $value });
33              
34             =head3 Results returned from an API call
35              
36             Use accessors for each attribute. If Att1 is expected to be an Paws::ServiceCatalog::ProductViewFilters object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->FullTextSearch
40              
41             =head1 DESCRIPTION
42              
43             This class has no description
44              
45             =head1 ATTRIBUTES
46              
47              
48             =head2 FullTextSearch => ArrayRef[Str|Undef]
49              
50              
51             =head2 Owner => ArrayRef[Str|Undef]
52              
53              
54             =head2 ProductType => ArrayRef[Str|Undef]
55              
56              
57             =head2 SourceProductId => ArrayRef[Str|Undef]
58              
59              
60              
61             =head1 SEE ALSO
62              
63             This class forms part of L<Paws>, describing an object used in L<Paws::ServiceCatalog>
64              
65             =head1 BUGS and CONTRIBUTIONS
66              
67             The source code is located here: https://github.com/pplu/aws-sdk-perl
68              
69             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
70              
71             =cut
72