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