mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
252 B
Ruby
10 lines
252 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
class AdjustmentSerializer < ActiveModel::Serializer
|
|
attributes :id, :amount, :label, :eligible,
|
|
:adjustable_type, :adjustable_id,
|
|
:originator_type, :originator_id
|
|
end
|
|
end
|