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             BEGIN
11             {
12             use strict;
13 2     2   23897840 use warnings;
  2         13  
  2         64  
14 2     2   11 use parent qw( Net::API::Stripe::Address );
  2         4  
  2         60  
15 2     2   12 use vars qw( $VERSION );
  2         4  
  2         14  
16 2     2   127 our( $VERSION ) = 'v0.100.0';
  2         5  
  2         93  
17 2     2   37 };
18              
19             use strict;
20 2     2   10 use warnings;
  2         4  
  2         35  
21 2     2   9  
  2         4  
  2         69  
22             1;
23              
24              
25             =encoding utf8
26              
27             =head1 NAME
28              
29             Net::API::Stripe::AddressKana - 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 kana 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