File Coverage

blib/lib/Net/API/Telegram/ShippingAddress.pm
Criterion Covered Total %
statement 7 13 53.8
branch n/a
condition n/a
subroutine 3 9 33.3
pod 6 6 100.0
total 16 28 57.1


line stmt bran cond sub pod time code
1             # -*- perl -*-
2             ##----------------------------------------------------------------------------
3             ## Net/API/Telegram/ShippingAddress.pm
4             ## Version 0.1
5             ## Copyright(c) 2019 Jacques Deguest
6             ## Author: Jacques Deguest <jack@deguest.jp>
7             ## Created 2019/05/29
8             ## Modified 2020/05/20
9             ## All rights reserved.
10             ##
11             ## This program is free software; you can redistribute it and/or modify it
12             ## under the same terms as Perl itself.
13             ##----------------------------------------------------------------------------
14             package Net::API::Telegram::ShippingAddress;
15             BEGIN
16             {
17 1     1   856 use strict;
  1         3  
  1         29  
18 1     1   4 use parent qw( Net::API::Telegram::Generic );
  1         2  
  1         4  
19 1     1   180 our( $VERSION ) = '0.1';
20             };
21              
22 0     0 1   sub city { return( shift->_set_get_scalar( 'city', @_ ) ); }
23              
24 0     0 1   sub country_code { return( shift->_set_get_scalar( 'country_code', @_ ) ); }
25              
26 0     0 1   sub post_code { return( shift->_set_get_scalar( 'post_code', @_ ) ); }
27              
28 0     0 1   sub state { return( shift->_set_get_scalar( 'state', @_ ) ); }
29              
30 0     0 1   sub street_line1 { return( shift->_set_get_scalar( 'street_line1', @_ ) ); }
31              
32 0     0 1   sub street_line2 { return( shift->_set_get_scalar( 'street_line2', @_ ) ); }
33              
34             1;
35              
36             __END__
37              
38             =encoding utf-8
39              
40             =head1 NAME
41              
42             Net::API::Telegram::ShippingAddress - A shipping address
43              
44             =head1 SYNOPSIS
45              
46             my $msg = Net::API::Telegram::ShippingAddress->new( %data ) ||
47             die( Net::API::Telegram::ShippingAddress->error, "\n" );
48              
49             =head1 DESCRIPTION
50              
51             L<Net::API::Telegram::ShippingAddress> is a Telegram Message Object as defined here L<https://core.telegram.org/bots/api#shippingaddress>
52              
53             This module has been automatically generated from Telegram API documentation by the script scripts/telegram-doc2perl-methods.pl.
54              
55             =head1 METHODS
56              
57             =over 4
58              
59             =item B<new>( {INIT HASH REF}, %PARAMETERS )
60              
61             B<new>() will create a new object for the package, pass any argument it might receive
62             to the special standard routine B<init> that I<must> exist.
63             Then it returns what returns B<init>().
64              
65             The valid parameters are as follow. Methods available here are also parameters to the B<new> method.
66              
67             =over 8
68              
69             =item * I<verbose>
70              
71             =item * I<debug>
72              
73             =back
74              
75             =item B<city>( String )
76              
77             City
78              
79             =item B<country_code>( String )
80              
81             ISO 3166-1 alpha-2 country code
82              
83             =item B<post_code>( String )
84              
85             Address post code
86              
87             =item B<state>( String )
88              
89             State, if applicable
90              
91             =item B<street_line1>( String )
92              
93             First line for the address
94              
95             =item B<street_line2>( String )
96              
97             Second line for the address
98              
99             =back
100              
101             =head1 COPYRIGHT
102              
103             Copyright (c) 2000-2019 DEGUEST Pte. Ltd.
104              
105             =head1 AUTHOR
106              
107             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
108              
109             =head1 SEE ALSO
110              
111             L<Net::API::Telegram>
112              
113             =head1 COPYRIGHT & LICENSE
114              
115             Copyright (c) 2018-2019 DEGUEST Pte. Ltd.
116              
117             You can use, copy, modify and redistribute this package and associated
118             files under the same terms as Perl itself.
119              
120             =cut
121