Class: InsoundApi::Artist
Instance Attribute Summary
Attributes inherited from ObjectBase
#node
Instance Method Summary
collapse
Methods inherited from ObjectBase
#initialize, #parse_int, #parse_str, #title, #url
Instance Method Details
8
9
10
|
# File 'lib/insound_api/artist.rb', line 8
def format
@format ||= parse_str('format')
end
|
#id ⇒ Object
12
13
14
|
# File 'lib/insound_api/artist.rb', line 12
def id
@id ||= parse_int('artist_id')
end
|
#name ⇒ Object
4
5
6
|
# File 'lib/insound_api/artist.rb', line 4
def name
@name ||= parse_str('artist_name')
end
|