Files
openfoodnetwork/app/serializers/api/customer_serializer.rb
2020-12-08 07:52:41 -08:00

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