Class: Flickr::Blog
- Inherits:
-
Object
- Object
- Flickr::Blog
- Defined in:
- lib/flickr/base.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#needspassword ⇒ Object
readonly
Returns the value of attribute needspassword.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize(id, name, needspassword, url) ⇒ Blog
constructor
A new instance of Blog.
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
#id ⇒ Object (readonly)
Returns the value of attribute id.
245 246 247 |
# File 'lib/flickr/base.rb', line 245 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
245 246 247 |
# File 'lib/flickr/base.rb', line 245 def name @name end |
#needspassword ⇒ Object (readonly)
Returns the value of attribute needspassword.
245 246 247 |
# File 'lib/flickr/base.rb', line 245 def needspassword @needspassword end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
245 246 247 |
# File 'lib/flickr/base.rb', line 245 def url @url end |