com.github.twitch4j.helix.domain.SoundtrackTrack Maven / Gradle / Ivy
The newest version!
package com.github.twitch4j.helix.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AccessLevel;
import lombok.Data;
import lombok.Setter;
import java.util.List;
/**
* @deprecated Twitch is decommissioning Soundtrack on 2023-07-17
*/
@Data
@Setter(AccessLevel.PRIVATE)
@Deprecated
public class SoundtrackTrack {
/**
* The album that includes the track.
*/
private SoundtrackAlbum album;
/**
* The artists included on the track.
*/
private List artists;
/**
* The duration of the track, in seconds.
*/
private Integer duration;
/**
* The track’s ASIN (Amazon Standard Identification Number).
*/
private String id;
/**
* The track’s ISRC (International Standard Recording Code).
*/
@JsonProperty("isrc")
private String code;
/**
* The track’s title.
*/
private String title;
}