Files
openfoodnetwork/app/serializers/invoice/adjustment_serializer.rb
Mohamed ABDELLANI 61d58df56f fix linter issues
2023-06-18 21:03:13 +02:00

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