class WsdlMapper::Runtime::Response

Attributes

body[R]
envelope[RW]
http_headers[R]
status[R]

Public Class Methods

new(status, body, http_headers) click to toggle source

@param [Fixnum] status HTTP response code @param [String] body HTTP response body @param [Hash] http_headers HTTP response headers

# File lib/wsdl_mapper/runtime/response.rb, line 19
def initialize(status, body, http_headers)
  @status = status
  @body = body
  @http_headers = http_headers
end