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

Summary

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

          belongs_to :promotion_action
          belongs_to :variant
        end
      end
    end
  end
end