class Comet::UninstallConfig

def from_hash(obj)

Parameters:
  • obj (Hash) -- The complete object as a Ruby hash
def from_hash(obj)
  raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
  obj.each do |k, v|
    case k
    when 'UninstallFlag'
      @uninstall_flag = v
    when 'RemoveConfigFile'
      @remove_config_file = v
    else
      @unknown_json_fields[k] = v
    end
  end
end