| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Telegram::Bot::Object::ForceReply; |
|
2
|
|
|
|
|
|
|
$Telegram::Bot::Object::ForceReply::VERSION = '0.029'; |
|
3
|
|
|
|
|
|
|
# ABSTRACT: The base class for Telegram 'ForceReply' type objects |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
5
|
|
|
5
|
|
41
|
use Mojo::Base 'Telegram::Bot::Object::Base'; |
|
|
5
|
|
|
|
|
14
|
|
|
|
5
|
|
|
|
|
44
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has 'force_reply'; # Boolean |
|
9
|
|
|
|
|
|
|
has 'input_field_placeholder'; #String |
|
10
|
|
|
|
|
|
|
has 'selective'; # Boolean |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
sub fields { |
|
13
|
0
|
|
|
0
|
0
|
|
return { scalar => [qw/force_reply input_field_placeholder selective/], |
|
14
|
|
|
|
|
|
|
}; |
|
15
|
|
|
|
|
|
|
} |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__END__ |