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.



247
248
249
250
251
252
# File 'lib/flickr/base.rb', line 247

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.



245
246
247
# File 'lib/flickr/base.rb', line 245

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



245
246
247
# File 'lib/flickr/base.rb', line 245

def name
  @name
end

#needspasswordObject (readonly)

Returns the value of attribute needspassword.



245
246
247
# File 'lib/flickr/base.rb', line 245

def needspassword
  @needspassword
end

#urlObject (readonly)

Returns the value of attribute url.



245
246
247
# File 'lib/flickr/base.rb', line 245

def url
  @url
end