File Coverage

blib/lib/WebService/PayPal/PaymentsAdvanced/Response/Authorization.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::Authorization;
2              
3 6     6   46 use Moo;
  6         18  
  6         42  
4              
5 6     6   2233 use namespace::autoclean;
  6         17  
  6         56  
6              
7             our $VERSION = '0.000026';
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             =head1 NAME
19              
20             WebService::PayPal::PaymentsAdvanced::Response::Authorization - Response class for Sale transactions
21              
22             =head1 VERSION
23              
24             version 0.000026
25              
26             =head1 DESCRIPTION
27              
28             Response class for Authorization transactions C<TRXTYPE=A> You should not create this
29             response object directly. This module inherits from
30             L<WebService::PayPal::PaymentsAdvanced::Response> and includes the methods
31             provided by L<WebService::PayPal::PaymentsAdvanced::Role::HasTransactionTime>
32             and L<WebService::PayPal::PaymentsAdvanced::Role::HasTender>.
33              
34             =head1 AUTHOR
35              
36             Olaf Alders <olaf@wundercounter.com>
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             This software is copyright (c) 2020 by MaxMind, Inc.
41              
42             This is free software; you can redistribute it and/or modify it under
43             the same terms as the Perl 5 programming language system itself.
44              
45             =cut
46              
47             __END__
48             # ABSTRACT: Response class for Sale transactions
49