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

co.fusionx.spotify.model.jackson.JacksonFollowers Maven / Gradle / Ivy

The newest version!
package co.fusionx.spotify.model.jackson;

import co.fusionx.spotify.model.Followers;
import com.fasterxml.jackson.annotation.JsonProperty;

public class JacksonFollowers implements Followers {

    @JsonProperty(value = "href")
    private String mHref;

    @JsonProperty(value = "total")
    private int mTotal;

    @Override
    public String getHref() {
        return mHref;
    }

    @Override
    public int getTotal() {
        return mTotal;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy