Class: TD::Types::Update::NewChosenInlineResult
- Inherits:
-
TD::Types::Update
- Object
- Dry::Struct
- Base
- TD::Types::Update
- TD::Types::Update::NewChosenInlineResult
- Defined in:
- lib/tdlib/types/update/new_chosen_inline_result.rb
Overview
The user has chosen a result of an inline query; for bots only.
Instance Attribute Summary collapse
-
#inline_message_id ⇒ TD::Types::String
Identifier of the sent inline message, if known.
-
#query ⇒ TD::Types::String
Text of the query.
-
#result_id ⇒ TD::Types::String
Identifier of the chosen result.
-
#sender_user_id ⇒ Integer
Identifier of the user who sent the query.
-
#user_location ⇒ TD::Types::Location?
User location; may be null.
Method Summary
Methods inherited from Base
Instance Attribute Details
#inline_message_id ⇒ TD::Types::String
Identifier of the sent inline message, if known.
9 10 11 |
# File 'lib/tdlib/types/update/new_chosen_inline_result.rb', line 9 def @inline_message_id end |
#query ⇒ TD::Types::String
Text of the query.
9 10 11 |
# File 'lib/tdlib/types/update/new_chosen_inline_result.rb', line 9 def query @query end |
#result_id ⇒ TD::Types::String
Identifier of the chosen result.
9 10 11 |
# File 'lib/tdlib/types/update/new_chosen_inline_result.rb', line 9 def result_id @result_id end |
#sender_user_id ⇒ Integer
Identifier of the user who sent the query.
9 10 11 |
# File 'lib/tdlib/types/update/new_chosen_inline_result.rb', line 9 def sender_user_id @sender_user_id end |
#user_location ⇒ TD::Types::Location?
User location; may be null.
9 10 11 |
# File 'lib/tdlib/types/update/new_chosen_inline_result.rb', line 9 def user_location @user_location end |