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

Summary

Maintainability
A
0 mins
Test Coverage
module Spree
  module Api
    module V2
      module Platform
        class TaxonImageSerializer < BaseSerializer
          include ::Spree::Api::V2::TaxonImageTransformationConcern

          set_type :taxon_image

          attributes :alt, :created_at, :updated_at, :original_url
        end
      end
    end
  end
end