File Coverage

blib/lib/WebService/PayPal/PaymentsAdvanced/Response/Sale.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 WebService::PayPal::PaymentsAdvanced::Response::Sale;
2              
3 6     6   50 use Moo;
  6         14  
  6         47  
4              
5 6     6   2005 use namespace::autoclean;
  6         45  
  6         57  
6              
7             our $VERSION = '0.000027';
8              
9             extends 'WebService::PayPal::PaymentsAdvanced::Response';
10              
11             with 'WebService::PayPal::PaymentsAdvanced::Role::HasTransactionTime',
12             'WebService::PayPal::PaymentsAdvanced::Role::HasTender';
13              
14             1;
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             WebService::PayPal::PaymentsAdvanced::Response::Sale - Response class for Sale transactions
23              
24             =head1 VERSION
25              
26             version 0.000027
27              
28             =head1 DESCRIPTION
29              
30             Response class for Sale transactions C<TRXTYPE=S> You should not create this
31             response object directly. This module inherits from
32             L<WebService::PayPal::PaymentsAdvanced::Response> and includes the methods
33             provided by L<WebService::PayPal::PaymentsAdvanced::Role::HasTransactionTime>
34             and L<WebService::PayPal::PaymentsAdvanced::Role::HasTender>.
35              
36             =head1 SUPPORT
37              
38             Bugs may be submitted through L<https://github.com/maxmind/webservice-paypal-paymentsadvanced/issues>.
39              
40             =head1 AUTHOR
41              
42             Olaf Alders <olaf@wundercounter.com>
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             This software is copyright (c) 2021 by MaxMind, Inc.
47              
48             This is free software; you can redistribute it and/or modify it under
49             the same terms as the Perl 5 programming language system itself.
50              
51             =cut
52              
53             __END__
54             # ABSTRACT: Response class for Sale transactions
55