summaryrefslogtreecommitdiff
path: root/lib/api/entities/ml/mlflow/run_param.rb
blob: 75fee738f8bd0bc23f35c492c89dba821a207422 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    module Ml
      module Mlflow
        class RunParam < Grape::Entity
          expose :name, as: :key
          expose :value
        end
      end
    end
  end
end