Sha256: 7d6c2d728ec408471d00eb84c2472a9f4b14da9f4cf76845d76068b5f37f48dc
Contents?: true
Size: 615 Bytes
Versions: 62
Compression:
Stored size: 615 Bytes
Contents
module Workarea module Metrics class TrafficReferrerByDay include ByDay field :medium, type: String field :source, type: String field :orders, type: Integer, default: 0 field :units_sold, type: Integer, default: 0 field :discounted_units_sold, type: Integer, default: 0 field :merchandise, type: Float, default: 0.0 field :shipping, type: Float, default: 0.0 field :discounts, type: Float, default: 0.0 field :tax, type: Float, default: 0.0 field :revenue, type: Float, default: 0.0 index(reporting_on: 1, orders: 1) end end end
Version data entries
62 entries across 62 versions & 1 rubygems
Version | Path |
---|---|
workarea-core-3.4.13 | app/models/workarea/metrics/traffic_referrer_by_day.rb |
workarea-core-3.4.12 | app/models/workarea/metrics/traffic_referrer_by_day.rb |