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