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: Animation.php
<?php namespace Telegram\Bot\Objects; /** * Class Animation. * * @link https://core.telegram.org/bots/api#animation * * @property string $fileId Unique file identifier. * @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 $width Video width as defined by sender. * @property int $height Video height as defined by sender. * @property int $duration Duration of the video in seconds as defined by sender. * @property PhotoSize|null $thumb (Optional). Animation thumbnail as defined by sender. * @property string|null $fileName (Optional). Original animation filename as defined by sender. * @property string|null $mimeType (Optional). MIME type of the file as defined by sender. * @property int|null $fileSize (Optional). File size. */ class Animation extends BaseObject { /** * {@inheritdoc} * * @return array{thumb: string} */ public function relations(): array { return [ 'thumb' => PhotoSize::class, ]; } }
Save
Cancel