mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
8 lines
154 B
Ruby
8 lines
154 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class PaymentMethodSerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :description
|
|
end
|
|
end
|