Class: Flickr::License
- Inherits:
-
Object
- Object
- Flickr::License
- 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.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id, name, url) ⇒ License
constructor
A new instance of License.
Constructor Details
#initialize(id, name, url) ⇒ License
Returns a new instance of License.
618 619 620 621 622 |
# File 'lib/flickr/base.rb', line 618 def initialize(id,name,url) @id = id @name = name @url = url end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
617 618 619 |
# File 'lib/flickr/base.rb', line 617 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
617 618 619 |
# File 'lib/flickr/base.rb', line 617 def name @name end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
617 618 619 |
# File 'lib/flickr/base.rb', line 617 def url @url end |