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