File Coverage

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