Class: TD::Types::InlineQueryResults
- Defined in:
- lib/tdlib/types/inline_query_results.rb
Overview
Represents the results of the inline query. Use sendInlineQueryResultMessage to send the result of the query.
Instance Attribute Summary collapse
-
#button ⇒ TD::Types::InlineQueryResultsButton?
Button to be shown above inline query results; may be null.
-
#inline_query_id ⇒ Integer
Unique identifier of the inline query.
-
#next_offset ⇒ TD::Types::String
The offset for the next request.
-
#results ⇒ Array<TD::Types::InlineQueryResult>
Results of the query.
Method Summary
Methods inherited from Base
Instance Attribute Details
#button ⇒ TD::Types::InlineQueryResultsButton?
Button to be shown above inline query results; may be null.
10 11 12 |
# File 'lib/tdlib/types/inline_query_results.rb', line 10 def end |
#inline_query_id ⇒ Integer
Unique identifier of the inline query.
10 11 12 |
# File 'lib/tdlib/types/inline_query_results.rb', line 10 def inline_query_id @inline_query_id end |
#next_offset ⇒ TD::Types::String
The offset for the next request. If empty, then there are no more results.
10 11 12 |
# File 'lib/tdlib/types/inline_query_results.rb', line 10 def next_offset @next_offset end |
#results ⇒ Array<TD::Types::InlineQueryResult>
Results of the query.
10 11 12 |
# File 'lib/tdlib/types/inline_query_results.rb', line 10 def results @results end |