| 1 | <?php |
||
| 25 | class DeleteMessage extends TelegramMethods |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * Unique identifier for the target chat or username of the target channel (in the format @channelusername) |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | public $chat_id = ''; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Identifier of the message to delete |
||
| 35 | * @var int |
||
| 36 | */ |
||
| 37 | public $message_id = 0; |
||
| 38 | |||
| 39 | public static function bindToObject(TelegramRawData $data, LoggerInterface $logger): TelegramTypes |
||
| 43 | |||
| 44 | public function getMandatoryFields(): array |
||
| 51 | } |
||
| 52 |