api/app/serializers/spree/api/v2/platform/stock_location_serializer.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spree
  module Api
    module V2
      module Platform
        class StockLocationSerializer < BaseSerializer
          include ResourceSerializerConcern

          attributes :name
          belongs_to :country
        end
      end
    end
  end
end