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