File Coverage

lib/Net/API/Stripe/AddressKana.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/AddressKana.pm
3             ## Version v0.100.0
4             ## Copyright(c) 2020 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::AddressKana;
11             BEGIN
12             {
13 2     2   21245169 use strict;
  2         15  
  2         66  
14 2     2   12 use warnings;
  2         4  
  2         128  
15 2     2   14 use parent qw( Net::API::Stripe::Address );
  2         2  
  2         18  
16 2     2   147 use vars qw( $VERSION );
  2         3  
  2         95  
17 2     2   41 our( $VERSION ) = 'v0.100.0';
18             };
19              
20 2     2   11 use strict;
  2         6  
  2         41  
21 2     2   9 use warnings;
  2         4  
  2         76  
22              
23             1;
24              
25             __END__
26              
27             =encoding utf8
28              
29             =head1 NAME
30              
31             Net::API::Stripe::AddressKana - 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 kana 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