1 | <?php |
||
21 | class SetChatDescription extends TelegramMethods |
||
22 | { |
||
23 | /** |
||
24 | * Unique identifier for the target chat or username of the target supergroup or channel (in the format |
||
25 | * @var string |
||
26 | */ |
||
27 | public $chat_id = ''; |
||
28 | |||
29 | /** |
||
30 | * New chat description, 1-255 characters |
||
31 | * @var string |
||
32 | */ |
||
33 | public $description; |
||
34 | |||
35 | public static function bindToObject(TelegramRawData $data, LoggerInterface $logger): TelegramTypes |
||
39 | |||
40 | public function getMandatoryFields(): array |
||
46 | } |
||
47 |