line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WebService::PayPal::PaymentsAdvanced::Response::Inquiry::CreditCard; |
2
|
|
|
|
|
|
|
|
3
|
6
|
|
|
6
|
|
50
|
use Moo; |
|
6
|
|
|
|
|
16
|
|
|
6
|
|
|
|
|
41
|
|
4
|
|
|
|
|
|
|
|
5
|
6
|
|
|
6
|
|
1945
|
use namespace::autoclean; |
|
6
|
|
|
|
|
19
|
|
|
6
|
|
|
|
|
47
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.000026'; |
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
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
WebService::PayPal::PaymentsAdvanced::Response::Inquiry::CreditCard - Response class for credit card Inquiry transactions |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 VERSION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
version 0.000026 |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 DESCRIPTION |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Response class for credit card Inquiry transactions C<TRXTYPE=I> You should |
30
|
|
|
|
|
|
|
not create this response object directly. This class inherits from |
31
|
|
|
|
|
|
|
L<WebService::PayPal::PaymentsAdvanced::Response::Inquiry> and includes the |
32
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
# ABSTRACT: Response class for credit card Inquiry transactions |
51
|
|
|
|
|
|
|
|