Sha256: dbc08a41d67ab44d99c4dc45b4ada57c6fa23963bb9de03acc32e90512cb4488

Contents?: true

Size: 753 Bytes

Versions: 1

Compression:

Stored size: 753 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; 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

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/update/new_chosen_inline_result.rb