Class: MWS::QueryString::RequestString

Inherits:
String
  • Object
show all
Defined in:
lib/mws/query_string/request_string.rb

Instance Method Summary collapse

Constructor Details

#initialize(args) ⇒ RequestString

Returns a new instance of RequestString.



6
7
8
9
10
11
12
13
# File 'lib/mws/query_string/request_string.rb', line 6

def initialize(args)
  @method   = args[:method]
  @endpoint = args[:endpoint]
  @path     = args[:path]
  @params   = args[:params]

  super(request_string)
end