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/ChosenInlineResult.php |
<?php namespace Telegram\Bot\Objects; /** * Class ChosenInlineResult. * * @link https://core.telegram.org/bots/api#choseninlineresult * * @property string $resultId The unique identifier for the result that was chosen. * @property User $from The user that chose the result. * @property Location|null $location (Optional). Sender location, only for bots that require user location. * @property string|null $inlineMessageId (Optional). Identifier of the sent inline message. Available only if there is an inline keyboard attached to the message. Will be also received in callback queries and can be used to edit the message. * @property string $query The query that was used to obtain the result. * * @link https://core.telegram.org/bots/api#choseninlineresult */ class ChosenInlineResult extends BaseObject { /** * {@inheritdoc} */ public function relations() { return [ 'from' => User::class, 'location' => Location::class, ]; } public function objectType(): ?string { return $this->findType(['location', 'inline_message_id']); } }