class AxiomusApi::VersionResponse

Attributes

version[RW]

Public Class Methods

new(xml) click to toggle source
# File lib/axiomus_api/response/version_response.rb, line 6
def initialize(xml)
  doc = Nokogiri::XML(xml)
  @version = doc.xpath('/response/version').text
end