File Coverage

lib/Net/API/Stripe/Customer/List.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/Customer/List.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             package Net::API::Stripe::Customer::List;
11             BEGIN
12             {
13 1     1   1070 use strict;
  1         6  
  1         39  
14 1     1   4 use warnings;
  1         12  
  1         27  
15 1     1   5 use parent qw( Net::API::Stripe::List );
  1         5  
  1         13  
16 1     1   75 use vars qw( $VERSION );
  1         2  
  1         62  
17 1     1   32 our( $VERSION ) = 'v0.100.0';
18             };
19              
20 1     1   4 use strict;
  1         5  
  1         18  
21 1     1   8 use warnings;
  1         3  
  1         35  
22              
23             # sub data { return( shift->_set_get_object_array( 'data', 'Net::API::Stripe::Customer', @_ ) ); }
24              
25             1;
26              
27             __END__
28              
29             =encoding utf8
30              
31             =head1 NAME
32              
33             Net::API::Stripe::Customer::List - A Stripe Customers List Object
34              
35             =head1 DESCRIPTION
36              
37             This module inherits completely from L<Net::API::Stripe::List> and may be removed in the future.
38              
39             =head1 AUTHOR
40              
41             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
42              
43             =head1 SEE ALSO
44              
45             Stripe API documentation:
46              
47             L<https://stripe.com/docs/api/invoices/line_item>
48              
49             =head1 COPYRIGHT & LICENSE
50              
51             Copyright (c) 2019-2020 DEGUEST Pte. Ltd.
52              
53             You can use, copy, modify and redistribute this package and associated
54             files under the same terms as Perl itself.
55              
56             =cut