mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-11 23:17:48 +00:00
7 lines
222 B
Ruby
7 lines
222 B
Ruby
module Api
|
|
class CustomerSerializer < ActiveModel::Serializer
|
|
attributes :id, :enterprise_id, :name, :code, :email, :allow_charges,
|
|
:gateway_recurring_payment_client_secret, :gateway_shop_id
|
|
end
|
|
end
|