ManageIQ/manageiq

View on GitHub
app/models/orchestration_template/orchestration_parameter_constraint.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class OrchestrationTemplate
  class OrchestrationParameterConstraint
    attr_accessor :description

    def initialize(hash = {})
      hash.each { |key, value| public_send(:"#{key}=", value) }
    end
  end
end