* The default chat reply markup was changed. Can occur because new messages with reply markup were received or because an old reply markup was hidden by the user.
13
*/
14
class UpdateChatReplyMarkup extends Update
15
{
16
public const TYPE_NAME = 'updateChatReplyMarkup';
17
18
/**
19
* Chat identifier.
20
*
21
* @var int
22
*/
23
protected int $chatId;
24
25
/**
26
* Identifier of the message from which reply markup needs to be used; 0 if there is no default custom reply markup in the chat.
27
*
28
* @var int
29
*/
30
protected int $replyMarkupMessageId;
31
32
public function __construct(int $chatId, int $replyMarkupMessageId)