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

Summary

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

          belongs_to :option_type
        end
      end
    end
  end
end