File Coverage

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