1 | <?php |
||
17 | class StopPoll extends TelegramMethods |
||
18 | { |
||
19 | /** |
||
20 | * Unique identifier for the target chat or username of the target channel (in the format @channelusername). A |
||
21 | * native poll can't be sent to a private chat |
||
22 | * @var string |
||
23 | */ |
||
24 | public $chat_id = ''; |
||
25 | |||
26 | /** |
||
27 | * Identifier of the original message with the poll |
||
28 | * @var int |
||
29 | */ |
||
30 | public $message_id; |
||
31 | |||
32 | /** |
||
33 | * Optional. Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to |
||
34 | * hide keyboard or to force a reply from the user. |
||
35 | * @var KeyboardMethods |
||
36 | */ |
||
37 | public $reply_markup; |
||
38 | |||
39 | public function getMandatoryFields(): array |
||
46 | } |
||
47 |