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