mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-11 03:40:20 +00:00
8 lines
170 B
Ruby
8 lines
170 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class PaymentMethodSerializer < ActiveModel::Serializer
|
|
attributes :id, :display_name, :display_description
|
|
end
|
|
end
|