Class: InsoundApi::Product
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
#artist_name ⇒ Object
4
5
6
|
# File 'lib/insound_api/product.rb', line 4
def artist_name
@artist_name ||= parse_str('artist_name')
end
|
8
9
10
|
# File 'lib/insound_api/product.rb', line 8
def format
@format ||= parse_str('format')
end
|
#id ⇒ Object
12
13
14
|
# File 'lib/insound_api/product.rb', line 12
def id
@id ||= parse_str('product_id')
end
|