All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.sonallux.spotify.api.models.PlaylistTrack Maven / Gradle / Ivy

The newest version!
package de.sonallux.spotify.api.models;

import lombok.*;

/**
 * PlaylistTrackObject
 */
@Getter
@Setter
@NoArgsConstructor
public class PlaylistTrack {
    /**
     * 

The date and time the track or episode was added. Note: some very old playlists may return null in this field.

*/ public java.time.Instant addedAt; /** *

The Spotify user who added the track or episode. Note: some very old playlists may return null in this field.

*/ public PlaylistUser addedBy; /** *

Whether this track or episode is a local file or not.

*/ public boolean isLocal; /** *

Information about the track or episode.

*/ public BaseObject track; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy