File Coverage

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