mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
9 lines
230 B
Ruby
9 lines
230 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class AdjustmentSerializer < ActiveModel::Serializer
|
|
attributes :adjustable_type, :label, :included_tax_total, :additional_tax_total, :amount,
|
|
:currency
|
|
end
|
|
end
|