1 | <?php |
||
25 | class StopMessageLiveLocation extends TelegramMethods |
||
26 | { |
||
27 | /** |
||
28 | * Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target |
||
29 | * channel (in the format @channelusername) |
||
30 | * @var string |
||
31 | */ |
||
32 | public $chat_id = ''; |
||
33 | |||
34 | /** |
||
35 | * Required if inline_message_id is not specified. Unique identifier of the sent message |
||
36 | * @var int |
||
37 | */ |
||
38 | public $message_id = 0; |
||
39 | |||
40 | /** |
||
41 | * Required if chat_id and message_id are not specified. Identifier of the inline message |
||
42 | * @var string |
||
43 | */ |
||
44 | public $inline_message_id = ''; |
||
45 | |||
46 | /** |
||
47 | * Optional. A JSON-serialized object for an inline keyboard. |
||
48 | * @var Markup |
||
49 | */ |
||
50 | public $reply_markup; |
||
51 | |||
52 | public function getMandatoryFields(): array |
||
57 | |||
58 | public static function bindToObject(TelegramRawData $data, LoggerInterface $logger): TelegramTypes |
||
70 | } |
||
71 |