# frozen_string_literal: true

module API
  module Entities
    module JobRequest
      class Artifacts < Grape::Entity
        expose :name
        expose :untracked
        expose :paths
        expose :when
        expose :expire_in
        expose :artifact_type
        expose :artifact_format
      end
    end
  end
end