| 1 | <?php |
||
| 18 | class EditMessageReplyMarkup extends TelegramMethods |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target |
||
| 22 | * channel (in the format @channelusername) |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | public $chat_id = ''; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Required if inline_message_id is not specified. Unique identifier of the sent message |
||
| 29 | * @var int |
||
| 30 | */ |
||
| 31 | public $message_id = 0; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Required if chat_id and message_id are not specified. Identifier of the inline message |
||
| 35 | * @var string |
||
| 36 | */ |
||
| 37 | public $inline_message_id = ''; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Optional. A JSON-serialized object for an inline keyboard. |
||
| 41 | * @var Markup |
||
| 42 | */ |
||
| 43 | public $reply_markup = null; |
||
| 44 | |||
| 45 | public function getMandatoryFields(): array |
||
| 49 | } |
||
| 50 |