| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Telegram::Bot::Object::ReplyParameters; |
|
2
|
|
|
|
|
|
|
$Telegram::Bot::Object::ReplyParameters::VERSION = '0.029'; |
|
3
|
|
|
|
|
|
|
# ABSTRACT: The base class for Telegram 'ReplyParameters' type objects |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
5
|
|
|
5
|
|
38
|
use Mojo::Base 'Telegram::Bot::Object::Base'; |
|
|
5
|
|
|
|
|
11
|
|
|
|
5
|
|
|
|
|
43
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has 'message_id'; |
|
9
|
|
|
|
|
|
|
has 'chat_id'; # Optional (if it came from a different chat) |
|
10
|
|
|
|
|
|
|
has 'allow_sending_without_reply'; # Boolean |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
sub fields { |
|
13
|
0
|
|
|
0
|
0
|
|
return { scalar => [qw/message_id chat_id allow_sending_without_reply/] |
|
14
|
|
|
|
|
|
|
}; |
|
15
|
|
|
|
|
|
|
} |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__END__ |