Sha256: d83b2fee2d40d529be48415223d56a93b6da970edf8f1d04f691646d38510c6d

Contents?: true

Size: 777 Bytes

Versions: 3

Compression:

Stored size: 777 Bytes

Contents

module TD::Types
  # The user has chosen a result of an inline query; for bots only.
  #
  # @attr sender_user_id [Integer] Identifier of the user who sent the query.
  # @attr user_location [TD::Types::Location, nil] User location, provided by the client; may be null.
  # @attr query [String] Text of the query.
  # @attr result_id [String] Identifier of the chosen result.
  # @attr inline_message_id [String] Identifier of the sent inline message, if known.
  class Update::NewChosenInlineResult < Update
    attribute :sender_user_id, TD::Types::Integer
    attribute :user_location, TD::Types::Location.optional.default(nil)
    attribute :query, TD::Types::String
    attribute :result_id, TD::Types::String
    attribute :inline_message_id, TD::Types::String
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/update/new_chosen_inline_result.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/new_chosen_inline_result.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/new_chosen_inline_result.rb