File Coverage

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