mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-12 23:09:03 +01:00
13 lines
266 B
Ruby
13 lines
266 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Stats::StoreOrder
|
||
|
include Elasticsearch::Persistence::Model
|
||
|
include StatConcern
|
||
|
|
||
|
attribute :orderId, Integer
|
||
|
attribute :state, String
|
||
|
attribute :products, Array
|
||
|
attribute :categories, Array
|
||
|
attribute :ca, Float
|
||
|
end
|