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