class FlickRaw::Response
Attributes
flickr_type[R]
Public Instance Methods
[](k)
click to toggle source
# File lib/flickraw/response.rb, line 29 def [](k); @h[k] end
inspect()
click to toggle source
# File lib/flickraw/response.rb, line 31 def inspect; @h.inspect end
marshal_dump()
click to toggle source
# File lib/flickraw/response.rb, line 33 def marshal_dump; [@h, @flickr_type] end
marshal_load(data)
click to toggle source
# File lib/flickraw/response.rb, line 34 def marshal_load(data); initialize(*data) end
to_hash()
click to toggle source
# File lib/flickraw/response.rb, line 32 def to_hash; @h end
to_s()
click to toggle source
Calls superclass method
# File lib/flickraw/response.rb, line 30 def to_s; @h['_content'] || super end