File Coverage

lib/Net/API/Stripe/Charge/Refunds.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 26 26 100.0


line stmt bran cond sub pod time code
1             ##----------------------------------------------------------------------------
2             ## Stripe API - ~/lib/Net/API/Stripe/Charge/Refunds.pm
3             ## Version v0.100.0
4             ## Copyright(c) 2019 DEGUEST Pte. Ltd.
5             ## Author: Jacques Deguest <jack@deguest.jp>
6             ## Created 2019/11/02
7             ## Modified 2020/05/15
8             ##
9             ##----------------------------------------------------------------------------
10             ## Array of Net::API::Stripe::Refund
11             package Net::API::Stripe::Charge::Refunds;
12             BEGIN
13             {
14 1     1   1260 use strict;
  1         3  
  1         30  
15 1     1   5 use warnings;
  1         1  
  1         31  
16 1     1   5 use parent qw( Net::API::Stripe::List );
  1         4  
  1         5  
17 1     1   64 use vars qw( $VERSION );
  1         2  
  1         60  
18 1     1   62 our( $VERSION ) = 'v0.100.0';
19             };
20              
21 1     1   7 use strict;
  1         2  
  1         20  
22 1     1   4 use warnings;
  1         1  
  1         77  
23              
24             # Inherited
25             # sub object { return( shift->_set_get_scalar( 'object', @_ ) ); }
26              
27             # sub data { return( shift->_set_get_object_array( 'data', 'Net::API::Stripe::Refund', @_ ) ); }
28              
29             # Inherited
30             # sub has_more { return( shift->_set_get_scalar( 'has_more', @_ ) ); }
31              
32             # Inherited
33             # sub url { return( shift->_set_get_uri( 'url', @_ ) ); }
34              
35             # Inherited
36             # sub total_count { return( shift->_set_get_scalar( 'total_count', @_ ) ); }
37              
38             1;
39              
40             __END__
41              
42             =encoding utf8
43              
44             =head1 NAME
45              
46             Net::API::Stripe::Charge::Refunds - A Stripe Refunds List Object
47              
48             =head1 DESCRIPTION
49              
50             This module inherits completely from L<Net::API::Stripe::List> and may be removed in the future.
51              
52             =head1 AUTHOR
53              
54             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
55              
56             =head1 SEE ALSO
57              
58             Stripe API documentation:
59              
60             L<https://stripe.com/docs/api/invoices/line_item>
61              
62             =head1 COPYRIGHT & LICENSE
63              
64             Copyright (c) 2019-2020 DEGUEST Pte. Ltd.
65              
66             You can use, copy, modify and redistribute this package and associated
67             files under the same terms as Perl itself.
68              
69             =cut