class AppleMusic::Curator::Attributes
developer.apple.com/documentation/applemusicapi/curator/attributes
Attributes
artwork[R]
editorial_notes[R]
name[R]
url[R]
Public Class Methods
new(props = {})
click to toggle source
# File lib/apple_music/curator/attributes.rb, line 9 def initialize(props = {}) @artwork = Artwork.new(props['artwork']) # required @editorial_notes = EditorialNotes.new(props['editorialNotes']) if props['editorialNotes'] @name = props['name'] # required @url = props['url'] # required end