fog/fog-vsphere

View on GitHub
lib/fog/vsphere/models/compute/customvalue.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Vsphere
    class Compute
      class Customvalue < Fog::Model
        attribute :value
        attribute :key

        def to_s
          value
        end
      end
    end
  end
end