1 | <?php |
||
15 | class EditMessageReplyMarkup extends AbstractMethod |
||
16 | { |
||
17 | const NAME = 'editMessageReplyMarkup'; |
||
18 | |||
19 | const RETURN_ENTITY = Message::class; |
||
20 | |||
21 | protected $chat_id; |
||
22 | |||
23 | protected $message_id; |
||
24 | |||
25 | protected $inline_message_id; |
||
26 | |||
27 | protected $supportedProperties = [ |
||
28 | 'chat_id' => false, |
||
29 | 'message_id' => false, |
||
30 | 'inline_message_id' => false, |
||
31 | 'reply_markup' => false |
||
32 | ]; |
||
33 | |||
34 | /** |
||
35 | * @return mixed |
||
36 | */ |
||
37 | public function getChatId() |
||
41 | |||
42 | /** |
||
43 | * @param mixed $chat_id |
||
44 | * |
||
45 | * @return $this |
||
46 | */ |
||
47 | public function setChatId($chat_id) |
||
53 | |||
54 | /** |
||
55 | * @return mixed |
||
56 | */ |
||
57 | public function getMessageId() |
||
61 | |||
62 | /** |
||
63 | * @param mixed $message_id |
||
64 | * |
||
65 | * @return $this |
||
66 | */ |
||
67 | public function setMessageId($message_id) |
||
73 | |||
74 | /** |
||
75 | * @return mixed |
||
76 | */ |
||
77 | public function getInlineMessageId() |
||
81 | |||
82 | /** |
||
83 | * @param mixed $inline_message_id |
||
84 | * |
||
85 | * @return $this |
||
86 | */ |
||
87 | public function setInlineMessageId($inline_message_id) |
||
93 | } |
||
94 |