class RSpotify::TrackLink

@attr [Hash] external_urls Known external URLs for this playlist @attr [String] href A link to the Web API endpoint @attr [String] id The {developer.spotify.com/web-api/user-guide/#spotify-uris-and-ids Spotify ID} for the track @attr [String] type The object type: “track” @attr [String] uri The {developer.spotify.com/web-api/user-guide/#spotify-uris-and-ids Spotify URI} for the object

Attributes

external_urls[R]
href[R]
id[R]
type[R]
uri[R]

Public Class Methods

new(options = {}) click to toggle source
# File lib/rspotify/track_link.rb, line 11
def initialize(options = {})
  @external_urls = options['external_urls']
  @href          = options['href']
  @id            = options['id']
  @type          = options['type']
  @uri           = options['uri']
end