BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
irazasyed
/
telegram-bot-sdk
/
src
/
Objects
📤 Upload
📝 New File
📁 New Folder
Close
Editing: File.php
<?php namespace Telegram\Bot\Objects; /** * Class File. * * @link https://core.telegram.org/bots/api#file * * @property string $fileId Unique identifier for this file. * @property string $fileUniqueId Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. * @property int|null $fileSize (Optional). File size, if known. * @property string|null $filePath (Optional). File path. Use 'https://api.telegram.org/file/bot<token>/<file_path>' to get the file. */ class File extends BaseObject { /** * {@inheritdoc} */ public function relations(): array { return []; } }
Save
Cancel