Class: TD::Types::Update::NewInlineCallbackQuery
- Inherits:
-
TD::Types::Update
- Object
- Dry::Struct
- Base
- TD::Types::Update
- TD::Types::Update::NewInlineCallbackQuery
- Defined in:
- lib/tdlib/types/update/new_inline_callback_query.rb
Overview
A new incoming callback query from a message sent via a bot; for bots only.
Instance Attribute Summary collapse
-
#chat_instance ⇒ Integer
An identifier uniquely corresponding to the chat a message was sent to.
-
#id ⇒ Integer
Unique query identifier.
-
#inline_message_id ⇒ TD::Types::String
Identifier of the inline message, from which the query originated.
-
#payload ⇒ TD::Types::CallbackQueryPayload
Query payload.
-
#sender_user_id ⇒ Integer
Identifier of the user who sent the query.
Method Summary
Methods inherited from Base
Instance Attribute Details
#chat_instance ⇒ Integer
An identifier uniquely corresponding to the chat a message was sent to.
9 10 11 |
# File 'lib/tdlib/types/update/new_inline_callback_query.rb', line 9 def chat_instance @chat_instance end |
#id ⇒ Integer
Unique query identifier.
9 10 11 |
# File 'lib/tdlib/types/update/new_inline_callback_query.rb', line 9 def id @id end |
#inline_message_id ⇒ TD::Types::String
Identifier of the inline message, from which the query originated.
9 10 11 |
# File 'lib/tdlib/types/update/new_inline_callback_query.rb', line 9 def @inline_message_id end |
#payload ⇒ TD::Types::CallbackQueryPayload
Query payload.
9 10 11 |
# File 'lib/tdlib/types/update/new_inline_callback_query.rb', line 9 def payload @payload end |
#sender_user_id ⇒ Integer
Identifier of the user who sent the query.
9 10 11 |
# File 'lib/tdlib/types/update/new_inline_callback_query.rb', line 9 def sender_user_id @sender_user_id end |