File Coverage

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