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.



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

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

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



253
254
255
# File 'lib/ads_common/savon_service.rb', line 253

def body
  @body
end

#headersObject

Returns the value of attribute headers.



253
254
255
# File 'lib/ads_common/savon_service.rb', line 253

def headers
  @headers
end

#urlObject

Returns the value of attribute url.



253
254
255
# File 'lib/ads_common/savon_service.rb', line 253

def url
  @url
end