class Tourmaline::Update

Overview

This object represents a Telegram user or bot.

Included Modules

Defined in:

tourmaline/models/update.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.new(rs : DB::ResultSet) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]

Class Method Detail

def self.from_rs(rs : DB::ResultSet) #

[View source]

Instance Method Detail

def callback_query : CallbackQuery | Nil #

Optional. New incoming callback query


[View source]
def channel_post : Message | Nil #

Optional. New incoming channel post of any kind — text, photo, sticker, etc.


[View source]
def chats #

Returns all unique chats included in this update


[View source]
def chats(&block : Chat -> ) #

Yields each unique chat in this update to the block.


[View source]
def chosen_inline_result : ChosenInlineResult | Nil #

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.


[View source]
def context : UpdateContext #

[View source]
def context=(context : UpdateContext) #

[View source]
def edited_channel_post : Message | Nil #

Optional. New version of a channel post that is known to the bot and was edited


[View source]
def edited_message : Message | Nil #

Optional. New version of a message that is known to the bot and was edited


[View source]
def inline_query : InlineQuery | Nil #

Optional. New incoming inline query


[View source]
def message : Message | Nil #

Optional. New incoming message of any kind — text, photo, sticker, etc.


[View source]
def poll : Poll | Nil #

Optional. New poll state. Bots receive only updates about stopped polls and polls, which are sent by the bot


[View source]
def poll_answer : PollAnswer | Nil #

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.


[View source]
def pre_checkout_query : PreCheckoutQuery | Nil #

Optional. New incoming pre-checkout query. Contains full information about checkout


[View source]
def set_context(values : Hash(String, V)) forall V #

[View source]
def set_context(values : NamedTuple) #

[View source]
def set_context(**kwargs) #

[View source]
def shipping_query : ShippingQuery | Nil #

Optional. New incoming shipping query. Only for invoices with flexible price


[View source]
def update_id : Int64 #

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.


[View source]
def users #

Returns all users included in this update as a Set


[View source]
def users(&block : User -> ) #

Yields each unique user in this update to the block.


[View source]