Files
openfoodnetwork/app/serializers/api/adjustment_serializer.rb

9 lines
262 B
Ruby

module Api
class AdjustmentSerializer < ActiveModel::Serializer
attributes :id, :amount, :label, :eligible,
:source_type, :source_id,
:adjustable_type, :adjustable_id,
:originator_type, :originator_id
end
end