File Coverage

blib/lib/Net/API/Telegram/ForceReply.pm
Criterion Covered Total %
statement 7 10 70.0
branch n/a
condition n/a
subroutine 3 6 50.0
pod 2 2 100.0
total 12 18 66.6


line stmt bran cond sub pod time code
1             # -*- perl -*-
2             ##----------------------------------------------------------------------------
3             ## Net/API/Telegram/ForceReply.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/03/28
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::ForceReply;
15             BEGIN
16             {
17 1     1   1008 use strict;
  1         2  
  1         33  
18 1     1   5 use parent qw( Net::API::Telegram::Generic );
  1         2  
  1         5  
19 1     1   166 our( $VERSION ) = '0.1';
20             };
21              
22 0     0 1   sub force_reply { return( shift->_set_get_scalar( 'force_reply', @_ ) ); }
23              
24 0     0 1   sub selective { return( shift->_set_get_scalar( 'selective', @_ ) ); }
25              
26 0     0     sub _is_boolean { return( grep( /^$_[1]$/, qw( force_reply selective ) ) ); }
27              
28             1;
29              
30             __END__
31              
32             =encoding utf-8
33              
34             =head1 NAME
35              
36             Net::API::Telegram::ForceReply - Upon receiving a message with this object, Telegram clients will display a reply interface to the user (act as if the user has selected the bot‘s message and tapped ’Reply')
37              
38             =head1 SYNOPSIS
39              
40             my $msg = Net::API::Telegram::ForceReply->new( %data ) ||
41             die( Net::API::Telegram::ForceReply->error, "\n" );
42              
43             =head1 DESCRIPTION
44              
45             L<Net::API::Telegram::ForceReply> is a Telegram Message Object as defined here L<https://core.telegram.org/bots/api#forcereply>
46              
47             This module has been automatically generated from Telegram API documentation by the script scripts/telegram-doc2perl-methods.pl.
48              
49             =head1 METHODS
50              
51             =over 4
52              
53             =item B<new>( {INIT HASH REF}, %PARAMETERS )
54              
55             B<new>() will create a new object for the package, pass any argument it might receive
56             to the special standard routine B<init> that I<must> exist.
57             Then it returns what returns B<init>().
58              
59             The valid parameters are as follow. Methods available here are also parameters to the B<new> method.
60              
61             =over 8
62              
63             =item * I<verbose>
64              
65             =item * I<debug>
66              
67             =back
68              
69             =item B<force_reply>( True )
70              
71             Shows reply interface to the user, as if they manually selected the bot‘s message and tapped ’Reply'
72              
73             =item B<selective>( Boolean )
74              
75             Optional. Use this parameter if you want to force reply from specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message.
76              
77             =back
78              
79             =head1 COPYRIGHT
80              
81             Copyright (c) 2000-2019 DEGUEST Pte. Ltd.
82              
83             =head1 AUTHOR
84              
85             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
86              
87             =head1 SEE ALSO
88              
89             L<Net::API::Telegram>
90              
91             =head1 COPYRIGHT & LICENSE
92              
93             Copyright (c) 2018-2019 DEGUEST Pte. Ltd.
94              
95             You can use, copy, modify and redistribute this package and associated
96             files under the same terms as Perl itself.
97              
98             =cut
99