File Coverage

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