| 1 | <?php |
||
| 25 | class SetChatPhoto extends TelegramMethods |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * Unique identifier for the target chat or username of the target supergroup or channel (in the format |
||
| 29 | * @channelusername) |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | public $chat_id = ''; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * New chat photo, uploaded using multipart/form-data |
||
| 36 | * @var InputFile |
||
| 37 | */ |
||
| 38 | public $photo; |
||
| 39 | |||
| 40 | public static function bindToObject(TelegramRawData $data, LoggerInterface $logger): TelegramTypes |
||
| 44 | |||
| 45 | public function getMandatoryFields(): array |
||
| 52 | } |
||
| 53 |