method
load_attributes_from_response
![No documentation Importance_0](https://d2vfyqvduarcvs.cloudfront.net/images/importance_0.png?1349367920)
load_attributes_from_response(response)
protected
Hide source
# File activeresource/lib/active_resource/base.rb, line 1320 def load_attributes_from_response(response) if response['Content-Length'] != "0" && response.body.strip.size > 0 load(self.class.format.decode(response.body)) end end