class Tourmaline::Update
- Tourmaline::Update
- Reference
- Object
Overview
This object represents a Telegram user or bot.
Included Modules
- DB::Mappable
- DB::Serializable
- JSON::Serializable
Defined in:
tourmaline/models/update.crConstructors
Class Method Summary
Instance Method Summary
-
#callback_query : CallbackQuery | Nil
Optional.
-
#channel_post : Message | Nil
Optional.
-
#chats
Returns all unique chats included in this update
-
#chats(&block : Chat -> )
Yields each unique chat in this update to the block.
-
#chosen_inline_result : ChosenInlineResult | Nil
Optional.
- #context : UpdateContext
- #context=(context : UpdateContext)
-
#edited_channel_post : Message | Nil
Optional.
-
#edited_message : Message | Nil
Optional.
-
#inline_query : InlineQuery | Nil
Optional.
-
#message : Message | Nil
Optional.
-
#poll : Poll | Nil
Optional.
-
#poll_answer : PollAnswer | Nil
Optional.
-
#pre_checkout_query : PreCheckoutQuery | Nil
Optional.
- #set_context(values : Hash(String, V)) forall V
- #set_context(values : NamedTuple)
- #set_context(**kwargs)
-
#shipping_query : ShippingQuery | Nil
Optional.
-
#update_id : Int64
The update‘s unique identifier.
-
#users
Returns all users included in this update as a Set
-
#users(&block : User -> )
Yields each unique user in this update to the block.
Constructor Detail
Class Method Detail
Instance Method Detail
Optional. New incoming channel post of any kind — text, photo, sticker, etc.
Optional. The result of an inline query that was chosen by a user and sent to their chat partner. Please see our documentation on the feedback collecting for details on how to enable these updates for your bot.
Optional. New version of a channel post that is known to the bot and was edited
Optional. New version of a message that is known to the bot and was edited
Optional. New incoming message of any kind — text, photo, sticker, etc.
Optional. New poll state. Bots receive only updates about stopped polls and polls, which are sent by the bot
Optional. A user changed their answer in a non-anonymous poll. Bots receive new votes only in polls that were sent by the bot itself.
Optional. New incoming pre-checkout query. Contains full information about checkout
Optional. New incoming shipping query. Only for invoices with flexible price
The update‘s unique identifier. Update identifiers start from a certain positive number and increase sequentially. This ID becomes especially handy if you’re using Webhooks, since it allows you to ignore repeated updates or to restore the correct update sequence, should they get out of order. If there are no new updates for at least a week, then identifier of the next update will be chosen randomly instead of sequentially.