File Coverage

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