File Coverage

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