1 | <?php |
||
25 | class EditMessageLiveLocation 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 | * Latitude of new location |
||
48 | * @var float |
||
49 | */ |
||
50 | public $latitude = 0.0; |
||
51 | |||
52 | /** |
||
53 | * Longitude of new location |
||
54 | * @var float |
||
55 | */ |
||
56 | public $longitude = 0.0; |
||
57 | |||
58 | /** |
||
59 | * Optional. A JSON-serialized object for an inline keyboard. |
||
60 | * @var Markup |
||
61 | */ |
||
62 | public $reply_markup; |
||
63 | |||
64 | public function getMandatoryFields(): array |
||
72 | |||
73 | public static function bindToObject(TelegramRawData $data, LoggerInterface $logger): TelegramTypes |
||
85 | } |
||
86 |