class Savon::Response

Public Instance Methods

code() click to toggle source
# File lib/stir/soap/soap_response.rb, line 6
def code
  self.http.code.to_i
end
headers() click to toggle source
# File lib/stir/soap/soap_response.rb, line 10
def headers
  self.http.headers
end

Protected Instance Methods

method_missing(name, *args, &block) click to toggle source
# File lib/stir/soap/soap_response.rb, line 16
def method_missing(name, *args, &block)
  self.body[args.first]
end