1 | <?php |
||
24 | class SetChatTitle extends TelegramMethods |
||
25 | { |
||
26 | /** |
||
27 | * Unique identifier for the target chat or username of the target supergroup or channel (in the format |
||
28 | * @var string |
||
29 | */ |
||
30 | public $chat_id = ''; |
||
31 | |||
32 | /** |
||
33 | * New chat title, 1-255 characters |
||
34 | * @var string |
||
35 | */ |
||
36 | public $title = ''; |
||
37 | |||
38 | public static function bindToObject(TelegramRawData $data, LoggerInterface $logger): TelegramTypes |
||
42 | |||
43 | public function getMandatoryFields(): array |
||
50 | } |
||
51 |