Method: StorageRoom::Accessors::ClassMethods#new_from_json_string

Defined in:
lib/storage_room/accessors.rb

#new_from_json_string(json_string) ⇒ Object

Build an object out of the POST body



36
37
38
39
# File 'lib/storage_room/accessors.rb', line 36

def new_from_json_string(json_string)
  hash = JSON.parse(json_string)
  new_from_response_data(hash.first[1])
end