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.



250
251
252
253
254
255
# File 'lib/flickr/base.rb', line 250

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.



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

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

#needspasswordObject (readonly)

Returns the value of attribute needspassword.



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

def needspassword
  @needspassword
end

#urlObject (readonly)

Returns the value of attribute url.



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

def url
  @url
end