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

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

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

import com.fasterxml.jackson.annotation.JsonTypeInfo;
import lombok.*;

/**
 * ArtistObject
 */
@Getter
@Setter
@NoArgsConstructor
@JsonTypeInfo(use = JsonTypeInfo.Id.NONE) // Disable deserialization based on @JsonTypeInfo
public class Artist extends BaseObject {
    /**
     * 

Known external URLs for this artist.

*/ public ExternalUrl externalUrls; /** *

Information about the followers of the artist.

*/ public Followers followers; /** *

A list of the genres the artist is associated with. If not yet classified, the array is empty.

*/ public java.util.List genres; /** *

Images of the artist in various sizes, widest first.

*/ public java.util.List images; /** *

The name of the artist.

*/ public String name; /** *

The popularity of the artist. The value will be between 0 and 100, with 100 being the most popular. The artist's popularity is calculated from the popularity of all the artist's tracks.

*/ public int popularity; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy