Method: Epics::Client#HEV

Defined in:
lib/epics/client.rb

#HEVObject



118
119
120
121
122
123
# File 'lib/epics/client.rb', line 118

def HEV
  res = post(url, Epics::HEV.new(self).to_xml).body
  res.doc.xpath("//xmlns:VersionNumber", xmlns: 'http://www.ebics.org/H000').each_with_object({}) do |node, versions|
    versions[node['ProtocolVersion']] = node.content
  end
end