1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-12 23:09:03 +01:00
fab-manager/app/models/stats/store_order.rb

13 lines
266 B
Ruby
Raw Normal View History

2022-10-10 17:42:25 +02:00
# 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