class AppleMusic::MusicVideo::Relationships

developer.apple.com/documentation/applemusicapi/musicvideo/relationships

Attributes

albums[R]
artists[R]
genres[R]

Public Class Methods

new(props = {}) click to toggle source
# File lib/apple_music/music_video/relationships.rb, line 9
def initialize(props = {})
  @albums = Relationship.new(props['albums']).data
  @artists = Relationship.new(props['artists']).data
  @genres = Relationship.new(props['genres']).data
end