File Coverage

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