File Coverage

blib/lib/WebService/PayPal/PaymentsAdvanced/Response/Void.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::Void;
2              
3 6     6   48 use Moo;
  6         17  
  6         49  
4              
5 6     6   2119 use namespace::autoclean;
  6         18  
  6         51  
6              
7             our $VERSION = '0.000027';
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::Void - Response class for voiding transactions
22              
23             =head1 VERSION
24              
25             version 0.000027
26              
27             =head1 DESCRIPTION
28              
29             Response class for transaction voiding C<TRXTYPE=V> 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) 2021 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 for voiding transactions
54