Method: Pollster::ApiClient#object_to_http_body
- Defined in:
- lib/pollster/api_client.rb
#object_to_http_body(model) ⇒ String
Convert object (array, hash, object, etc) to JSON string.
358 359 360 361 362 363 364 365 366 367 |
# File 'lib/pollster/api_client.rb', line 358 def object_to_http_body(model) return model if model.nil? || model.is_a?(String) local_body = nil if model.is_a?(Array) local_body = model.map{|m| object_to_hash(m) } else local_body = object_to_hash(model) end local_body.to_json end |