1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-13 23:48:55 +01:00
fab-manager/app/models/stats/store_order.rb
2022-10-10 17:42:25 +02:00

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