File Coverage

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