Class: Vagalume::Artist

Inherits:
Object
  • Object
show all
Defined in:
lib/vagalume/artist.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#idObject

Returns the value of attribute id.



3
4
5
# File 'lib/vagalume/artist.rb', line 3

def id
  @id
end

#nameObject

Returns the value of attribute name.



3
4
5
# File 'lib/vagalume/artist.rb', line 3

def name
  @name
end

#urlObject

Returns the value of attribute url.



3
4
5
# File 'lib/vagalume/artist.rb', line 3

def url
  @url
end

Class Method Details

.fetch(artist_json) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/vagalume/artist.rb', line 5

def self.fetch(artist_json)
  artist = Vagalume::Artist.new
  artist.id = artist_json["id"]
  artist.name = artist_json["name"] 
  artist.url = artist_json["url"] 
  artist
end