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