File Coverage

blib/lib/Paws/MarketplaceMetering/ResolveCustomerResult.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::MarketplaceMetering::ResolveCustomerResult;
3 1     1   945 use Moose;
  1         4  
  1         10  
4             has CustomerIdentifier => (is => 'ro', isa => 'Str');
5             has ProductCode => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::MarketplaceMetering::ResolveCustomerResult
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 CustomerIdentifier => Str
19              
20             The CustomerIdentifier is used to identify an individual customer in
21             your application. Calls to BatchMeterUsage require CustomerIdentifiers
22             for each UsageRecord.
23              
24              
25             =head2 ProductCode => Str
26              
27             The product code is returned to confirm that the buyer is registering
28             for your product. Subsequent BatchMeterUsage calls should be made using
29             this product code.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;