File Coverage

blib/lib/Net/API/Stripe/Charge/List.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 10 100.0


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