class AppStoreLookup::AppArtist
Attributes
id[R]
name[R]
url[R]
Public Class Methods
new(attributes = {})
click to toggle source
# File lib/app_store_lookup.rb, line 80 def initialize(attributes = {}) @name = attributes[:name] @id = attributes[:id] @url = attributes[:url] end