Path : /var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Objects/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Objects/StickerSet.php |
<?php namespace Telegram\Bot\Objects; /** * Class StickerSet. * * @link https://core.telegram.org/bots/api#stickerset * * @property string $name Sticker set name * @property string $title Sticker set title * @property bool $isAnimated True, if the sticker set contains animated stickers * @property bool $containsMasks True, if the sticker set contains masks * @property Sticker[] $stickers List of all set stickers * @property PhotoSize|null $thumb (Optional). Sticker set thumbnail in the .WEBP or .TGS format */ class StickerSet extends BaseObject { /** * {@inheritdoc} */ public function relations() { return [ 'stickers' => [Sticker::class], 'thumb' => PhotoSize::class, ]; } }