gitlab-org--gitlab-foss/lib/api/entities/ml/mlflow/new_experiment.rb

20 lines
300 B
Ruby

# frozen_string_literal: true
module API
module Entities
module Ml
module Mlflow
class NewExperiment < Grape::Entity
expose :experiment_id
private
def experiment_id
object.iid.to_s
end
end
end
end
end
end