File Coverage

lib/Net/API/Stripe/Payment/Card.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.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             ## https://stripe.com/docs/api/cards/object
11             BEGIN
12             {
13             use strict;
14 1     1   1033 use warnings;
  1         2  
  1         32  
15 1     1   5 use parent qw( Net::API::Stripe::Connect::ExternalAccount::Card );
  1         2  
  1         32  
16 1     1   5 use vars qw( $VERSION );
  1         2  
  1         6  
17 1     1   73 our( $VERSION ) = 'v0.100.0';
  1         2  
  1         47  
18 1     1   33 };
19              
20             use strict;
21 1     1   7 use warnings;
  1         2  
  1         21  
22 1     1   6  
  1         2  
  1         34  
23             1;
24              
25              
26             =encoding utf8
27              
28             =head1 NAME
29              
30             Net::API::Stripe::Payment::Card - A Stripe Payment Card Object
31              
32             =head1 VERSION
33              
34             v0.100.0
35              
36             =head1 DESCRIPTION
37              
38             You can store multiple cards on a customer in order to charge the customer later. You can also store multiple debit cards on a recipient in order to transfer to those cards later.
39              
40             That being said, all the methods are exactly the same as L<Net::API::Stripe::Connect::ExternalAccount::Card> so this module inherits 100% from it.
41              
42             The only reason why I am keeping it here, ie because Stripe makes a distinction as mentioned above.
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/cards>, L<https://stripe.com/docs/sources/cards>
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