File Coverage

lib/Net/API/Stripe/AddressKanji.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/AddressKanji.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 2     2   23034570 use warnings;
  2         12  
  2         55  
14 2     2   11 use parent qw( Net::API::Stripe::Address );
  2         3  
  2         51  
15 2     2   9 use vars qw( $VERSION );
  2         3  
  2         8  
16 2     2   145 our( $VERSION ) = 'v0.100.0';
  2         4  
  2         84  
17 2     2   34 };
18              
19             use strict;
20 2     2   10 use warnings;
  2         2  
  2         34  
21 2     2   9  
  2         3  
  2         64  
22             1;
23              
24              
25             =encoding utf8
26              
27             =head1 NAME
28              
29             Net::API::Stripe::AddressKanji - A Stripe Japanese Address Object
30              
31             =head1 SYNOPSIS
32              
33             my $addr = $stripe->address({
34             line1 => '千代田区九段南1-2-3',
35             line2 => '大ビル12階',
36             city => '東京都',
37             postal_code => '123-4567',
38             country => 'jp',
39             });
40              
41             =head1 VERSION
42              
43             v0.100.0
44              
45             =head1 DESCRIPTION
46              
47             This module inherits everything from L<Net::API::Stripe::Address>
48              
49             This is used to store the address in its kanji version.
50              
51             =head1 AUTHOR
52              
53             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
54              
55             =head1 SEE ALSO
56              
57             Stripe API documentation:
58              
59             L<https://stripe.com/docs/api>
60              
61             =head1 COPYRIGHT & LICENSE
62              
63             Copyright (c) 2019-2020 DEGUEST Pte. Ltd.
64              
65             You can use, copy, modify and redistribute this package and associated
66             files under the same terms as Perl itself.
67              
68             =cut