File Coverage

lib/Net/API/Stripe/Payment/BankAccount.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/BankAccount.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/customer_bank_accounts/object
11             BEGIN
12             {
13             use strict;
14 1     1   1011 use warnings;
  1         2  
  1         36  
15 1     1   5 use parent qw( Net::API::Stripe::Connect::ExternalAccount::Bank );
  1         2  
  1         31  
16 1     1   6 use vars qw( $VERSION );
  1         2  
  1         5  
17 1     1   78 our( $VERSION ) = 'v0.100.0';
  1         2  
  1         48  
18 1     1   35 };
19              
20             use strict;
21 1     1   7 use warnings;
  1         1  
  1         24  
22 1     1   5  
  1         2  
  1         34  
23             1;
24              
25              
26             =encoding utf8
27              
28             =head1 NAME
29              
30             Net::API::Stripe::Payment::BankAccount - A Stripe Payment Bank Account Object.
31              
32             =head1 VERSION
33              
34             v0.100.0
35              
36             =head1 DESCRIPTION
37              
38             These bank accounts are payment methods on Customer objects.
39              
40             On the other hand External Accounts (L<Net::API::Stripe::Connect::Account::ExternalAccounts> / L<https://stripe.com/docs/api#external_accounts>) are transfer destinations on Account objects for Custom accounts (L<https://stripe.com/docs/connect/custom-accounts>). They can be bank accounts or debit cards as well, and are documented in the links above.
41              
42             That being said, all the methods are exactly the same as L<Net::API::Stripe::Connect::ExternalAccount::Bank> 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/customer_bank_accounts>, L<https://stripe.com/docs/payments/ach-bank-transfers>
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