class Homophone::Service::Musician

Attributes

genres[R]
name[R]
spotify_id[R]

Public Class Methods

new(service, blob) click to toggle source
# File lib/homophone/service.rb, line 65
def initialize(service, blob)
  @service = service
  @spotify_id = blob['id']
  @name = blob['name']
  @genres = blob['genres']
end

Public Instance Methods