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             package Net::API::Stripe::Payment::Card;
12             BEGIN
13             {
14 1     1   1049 use strict;
  1         3  
  1         32  
15 1     1   6 use warnings;
  1         2  
  1         31  
16 1     1   9 use parent qw( Net::API::Stripe::Connect::ExternalAccount::Card );
  1         2  
  1         6  
17 1     1   77 use vars qw( $VERSION );
  1         2  
  1         47  
18 1     1   43 our( $VERSION ) = 'v0.100.0';
19             };
20              
21 1     1   7 use strict;
  1         4  
  1         21  
22 1     1   6 use warnings;
  1         2  
  1         34  
23              
24             1;
25              
26             __END__
27              
28             =encoding utf8
29              
30             =head1 NAME
31              
32             Net::API::Stripe::Payment::Card - A Stripe Payment Card Object
33              
34             =head1 VERSION
35              
36             v0.100.0
37              
38             =head1 DESCRIPTION
39              
40             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.
41              
42             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.
43              
44             The only reason why I am keeping it here, ie because Stripe makes a distinction as mentioned above.
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/cards>, L<https://stripe.com/docs/sources/cards>
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