class VisitorTiming
    include Mongoid::Document
    field :seentime, type: Time
    field :location, type: Hash
    field :ssid, type: String
    field :manufacturer, type: String
    field :os, type: String
    field :ipv6, type: String
    field :ipv4, type: String
    field :rss, type: String
    field :status, type: String

#wavespot fields
    field :protype, type: String
    field :signal, type: String
    field :noise, type: String
    field :sgnl_noise_ratio, type: String
    field :rate, type: String
    field :tsf, type: String
    field :mode, type: String
    field :channel, type: String
# wavespot fields end

    field :timestamp, type: Time
    field :created_at, type: Time
    field :rl_mac_id, type: String
    field :vd_mac_id, type: String
    belongs_to :router_locations
    belongs_to :visitor_details

end