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