File Coverage

blib/lib/WebService/PayPal/PaymentsAdvanced/Response/Credit.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::Credit;
2              
3 6     6   47 use Moo;
  6         17  
  6         39  
4              
5 6     6   1850 use namespace::autoclean;
  6         16  
  6         49  
6              
7             our $VERSION = '0.000026';
8              
9             extends 'WebService::PayPal::PaymentsAdvanced::Response';
10              
11             with 'WebService::PayPal::PaymentsAdvanced::Role::HasTransactionTime';
12              
13             1;
14              
15             =pod
16              
17             =head1 NAME
18              
19             WebService::PayPal::PaymentsAdvanced::Response::Credit - Response class to refund (credit) transactions
20              
21             =head1 VERSION
22              
23             version 0.000026
24              
25             =head1 DESCRIPTION
26              
27             Response class for transaction refunding C<TRXTYPE=C> You should not
28             create this response object directly. This class inherits from
29             L<WebService::PayPal::PaymentsAdvanced::Response> and includes the methods
30             provided by L<WebService::PayPal::PaymentsAdvanced::Role::HasTransactionTime>.
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              
47             # ABSTRACT: Response class to refund (credit) transactions
48