class Flickr::Response

Attributes

flickr_type[R]

Public Instance Methods

[](k) click to toggle source
# File lib/flickr/response.rb, line 31
def [](k); @h[k] end
inspect() click to toggle source
# File lib/flickr/response.rb, line 33
def inspect; @h.inspect end
marshal_dump() click to toggle source
# File lib/flickr/response.rb, line 35
def marshal_dump; [@h, @flickr_type] end
marshal_load(data) click to toggle source
# File lib/flickr/response.rb, line 36
def marshal_load(data); initialize(*data) end
to_hash() click to toggle source
# File lib/flickr/response.rb, line 34
def to_hash; @h end
to_s() click to toggle source
Calls superclass method
# File lib/flickr/response.rb, line 32
def to_s; @h['_content'] || super end