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

com.github.twitch4j.pubsub.domain.RadioTrack Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package com.github.twitch4j.pubsub.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 RadioTrack {

    private String asin;

    private Integer duration; // in seconds

    private String title;

    private List artists;

    private AlbumInfo album;

    @Data
    @Setter(AccessLevel.PRIVATE)
    public static class Artist {
        private String asin;
        private String name;
    }

    @Data
    @Setter(AccessLevel.PRIVATE)
    public static class AlbumInfo {
        private String asin;
        private String name;
        @JsonProperty("imageURL")
        private String imageUrl;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy