Link Search Menu Expand Document

danog\MadelineProto\EventHandler\Query\ChatGameQuery

Back to index

Author: Daniil Gentili daniil@daniil.it

Represents a query sent by the user by clicking on a “Play game” button in a chat.

Properties

  • $gameShortName: string Short name of a Game to be returned, serves as the unique identifier for the game
  • $queryId: int Query ID
  • $userId: int ID of the user that pressed the button
  • $chatInstance: int Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.
  • $chatId: int Chat where the inline keyboard was sent
  • $messageId: int Message ID

Method list:

Methods:

answer(string $message, bool $alert = false, (string|null) $url = NULL, int $cacheTime = 300): bool

Parameters:

  • $message: string Popup to show
  • $alert: bool Whether to show the message as a popup instead of a toast notification
  • $url: (string|null) URL to open
  • $cacheTime: int Cache validity (default set to 5 min based on telegram official docs …)

editText(string $message, (array|null) $replyMarkup = NULL, ParseMode $parseMode = \danog\MadelineProto\ParseMode::TEXT, bool $noWebpage = false, (int|null) $scheduleDate = NULL): \danog\MadelineProto\EventHandler\Message

Edit message text.

Parameters:

  • $message: string New message
  • $replyMarkup: (array|null) Reply markup for inline keyboards
  • $parseMode: ParseMode Whether to parse HTML or Markdown markup in the message
  • $noWebpage: bool Disable webpage preview
  • $scheduleDate: (int|null) Scheduled message date for scheduled messages

See also:

editReplyMarkup(array $replyMarkup): \danog\MadelineProto\EventHandler\Message

Edit message keyboard.

Parameters:

  • $replyMarkup: array Reply markup for inline keyboards

See also:

delete(boolean $revoke = true): void

Delete the message.

Parameters:

  • $revoke: boolean Whether to delete the message for all participants of the chat.

pin(bool $pmOneside = false, bool $silent = false): void

Pin a message.

Parameters:

  • $pmOneside: bool Whether the message should only be pinned on the local side of a one-to-one chat
  • $silent: bool Pin the message silently, without triggering a notification

unpin(bool $pmOneside = false, bool $silent = false): ?\danog\MadelineProto\EventHandler\Update

Unpin a message.

Parameters:

  • $pmOneside: bool Whether the message should only be pinned on the local side of a one-to-one chat
  • $silent: bool Pin the message silently, without triggering a notification

See also:

report(ReportReason $reason, string $message): bool

Report a message in a chat for violation of telegram’s Terms of Service.

Parameters:

  • $reason: ReportReason Why are these messages being reported
  • $message: string Comment for report moderation

See also:

  • ReportReason

Generated by danog/phpdoc