Class: Flickr::License

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id, name, url) ⇒ License

Returns a new instance of License.



620
621
622
623
624
# File 'lib/flickr/base.rb', line 620

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

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



619
620
621
# File 'lib/flickr/base.rb', line 619

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



619
620
621
# File 'lib/flickr/base.rb', line 619

def name
  @name
end

#urlObject (readonly)

Returns the value of attribute url.



619
620
621
# File 'lib/flickr/base.rb', line 619

def url
  @url
end

Class Method Details

.from_xml(xml) ⇒ Object



626
627
628
629
630
# File 'lib/flickr/base.rb', line 626

def self.from_xml(xml)
	att = xml.attributes
	return Flickr::License.new(att['id'],att['name'],
			att['url'])
end