de.sonallux.spotify.api.models.PlaylistTrack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java wrapper for Spotify's Web API
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