Class: Flickr::Blog

Inherits:
Object
  • Object
show all
Defined in:
lib/flickr/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id, name, needspassword, url) ⇒ Blog

Returns a new instance of Blog.



263
264
265
266
267
268
# File 'lib/flickr/base.rb', line 263

def initialize(id,name,needspassword,url)
	@id = id
	@name = name
	@needspassword = needspassword
	@url = url
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



261
262
263
# File 'lib/flickr/base.rb', line 261

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



261
262
263
# File 'lib/flickr/base.rb', line 261

def name
  @name
end

#needspasswordObject (readonly)

Returns the value of attribute needspassword.



261
262
263
# File 'lib/flickr/base.rb', line 261

def needspassword
  @needspassword
end

#urlObject (readonly)

Returns the value of attribute url.



261
262
263
# File 'lib/flickr/base.rb', line 261

def url
  @url
end