Class: AdsCommon::SavonService::RequestInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/ads_common/savon_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(body, headers, url) ⇒ RequestInfo

Returns a new instance of RequestInfo.



257
258
259
# File 'lib/ads_common/savon_service.rb', line 257

def initialize(body, headers, url)
  @body, @headers, @url = body, headers, url
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



255
256
257
# File 'lib/ads_common/savon_service.rb', line 255

def body
  @body
end

#headersObject

Returns the value of attribute headers.



255
256
257
# File 'lib/ads_common/savon_service.rb', line 255

def headers
  @headers
end

#urlObject

Returns the value of attribute url.



255
256
257
# File 'lib/ads_common/savon_service.rb', line 255

def url
  @url
end