File Coverage

blib/lib/WebService/PayPal/PaymentsAdvanced/Response/Inquiry/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::Inquiry::CreditCard;
2              
3 6     6   51 use Moo;
  6         15  
  6         57  
4              
5 6     6   2116 use namespace::autoclean;
  6         38  
  6         61  
6              
7             our $VERSION = '0.000028';
8              
9             extends 'WebService::PayPal::PaymentsAdvanced::Response::Inquiry';
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::Inquiry::CreditCard - Response class for credit card Inquiry transactions
24              
25             =head1 VERSION
26              
27             version 0.000028
28              
29             =head1 DESCRIPTION
30              
31             Response class for credit card Inquiry transactions C<TRXTYPE=I> You should
32             not create this response object directly. This class inherits from
33             L<WebService::PayPal::PaymentsAdvanced::Response::Inquiry> 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) 2022 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              
56             # ABSTRACT: Response class for credit card Inquiry transactions
57