summaryrefslogtreecommitdiff
path: root/lib/api/entities/bulk_imports/entity_failure.rb
blob: a3dbe3280ee8902a04a2beae38189644107f89f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module API
  module Entities
    module BulkImports
      class EntityFailure < Grape::Entity
        expose :pipeline_class
        expose :pipeline_step
        expose :exception_class
        expose :correlation_id_value
        expose :created_at
      end
    end
  end
end