File Coverage

blib/lib/Net/API/Telegram/CallbackGame.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             # -*- perl -*-
2             ##----------------------------------------------------------------------------
3             ## Telegram API - ~/lib/Net/API/Telegram/CallbackGame.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 2019/11/01
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::CallbackGame;
15             BEGIN
16             {
17 1     1   1025 use strict;
  1         2  
  1         36  
18 1     1   6 use parent qw( Net::API::Telegram::Generic );
  1         1  
  1         6  
19 1     1   91 our( $VERSION ) = '0.1';
20             };
21              
22             1;
23              
24             __END__
25              
26             =encoding utf-8
27              
28             =head1 NAME
29              
30             Net::API::Telegram::CallbackGame - A placeholder, currently holds no information
31              
32             =head1 SYNOPSIS
33              
34             my $msg = Net::API::Telegram::CallbackGame->new( %data ) ||
35             die( Net::API::Telegram::CallbackGame->error, "\n" );
36              
37             =head1 DESCRIPTION
38              
39             L<Net::API::Telegram::CallbackGame> is a Telegram Message Object as defined here L<https://core.telegram.org/bots/api#callbackgame>
40              
41             This module has been automatically generated from Telegram API documentation by the script scripts/telegram-doc2perl-methods.pl.
42              
43             =head1 METHODS
44              
45             =over 4
46              
47             =item B<new>( {INIT HASH REF}, %PARAMETERS )
48              
49             B<new>() will create a new object for the package, pass any argument it might receive
50             to the special standard routine B<init> that I<must> exist.
51             Then it returns what returns B<init>().
52              
53             The valid parameters are as follow. Methods available here are also parameters to the B<new> method.
54              
55             =over 8
56              
57             =item * I<verbose>
58              
59             =item * I<debug>
60              
61             =back
62              
63             There is no other method available.
64              
65             =back
66              
67             =head1 COPYRIGHT
68              
69             Copyright (c) 2000-2019 DEGUEST Pte. Ltd.
70              
71             =head1 AUTHOR
72              
73             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
74              
75             =head1 SEE ALSO
76              
77             L<Net::API::Telegram>
78              
79             =head1 COPYRIGHT & LICENSE
80              
81             Copyright (c) 2018-2019 DEGUEST Pte. Ltd.
82              
83             You can use, copy, modify and redistribute this package and associated
84             files under the same terms as Perl itself.
85              
86             =cut
87