Class: SpotifyWebApi::SavedTrackObject

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/spotify_web_api/models/saved_track_object.rb

Overview

SavedTrackObject Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(added_at = SKIP, track = SKIP) ⇒ SavedTrackObject

Returns a new instance of SavedTrackObject.



47
48
49
50
# File 'lib/spotify_web_api/models/saved_track_object.rb', line 47

def initialize(added_at = SKIP, track = SKIP)
  @added_at = added_at unless added_at == SKIP
  @track = track unless track == SKIP
end

Instance Attribute Details

#added_atDateTime

The date and time the track was saved. Timestamps are returned in ISO 8601 format as Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ. If the time is imprecise (for example, the date/time of an album release), an additional field indicates the precision; see for example, release_date in an album object.

Returns:

  • (DateTime)


20
21
22
# File 'lib/spotify_web_api/models/saved_track_object.rb', line 20

def added_at
  @added_at
end

#trackTrackObject

Information about the track.

Returns:



24
25
26
# File 'lib/spotify_web_api/models/saved_track_object.rb', line 24

def track
  @track
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/spotify_web_api/models/saved_track_object.rb', line 53

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  added_at = if hash.key?('added_at')
               (DateTimeHelper.from_rfc3339(hash['added_at']) if hash['added_at'])
             else
               SKIP
             end
  track = TrackObject.from_hash(hash['track']) if hash['track']

  # Create object from extracted values.
  SavedTrackObject.new(added_at,
                       track)
end

.namesObject

A mapping from model property names to API property names.



27
28
29
30
31
32
# File 'lib/spotify_web_api/models/saved_track_object.rb', line 27

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['added_at'] = 'added_at'
  @_hash['track'] = 'track'
  @_hash
end

.nullablesObject

An array for nullable fields



43
44
45
# File 'lib/spotify_web_api/models/saved_track_object.rb', line 43

def self.nullables
  []
end

.optionalsObject

An array for optional fields



35
36
37
38
39
40
# File 'lib/spotify_web_api/models/saved_track_object.rb', line 35

def self.optionals
  %w[
    added_at
    track
  ]
end

Instance Method Details

#to_custom_added_atObject



69
70
71
# File 'lib/spotify_web_api/models/saved_track_object.rb', line 69

def to_custom_added_at
  DateTimeHelper.to_rfc3339(added_at)
end