Sha256: 48f970239ecf3089891ddb247b17b102db8c09456b2a7bcd06692ab1ef28cdd7

Contents?: true

Size: 696 Bytes

Versions: 3

Compression:

Stored size: 696 Bytes

Contents

module TD::Types
  # A new incoming inline query; for bots only.
  #
  # @attr id [Integer] Unique query identifier.
  # @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 offset [String] Offset of the first entry to return.
  class Update::NewInlineQuery < Update
    attribute :id, TD::Types::Integer
    attribute :sender_user_id, TD::Types::Integer
    attribute :user_location, TD::Types::Location.optional.default(nil)
    attribute :query, TD::Types::String
    attribute :offset, 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_inline_query.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/new_inline_query.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/new_inline_query.rb