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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

import co.fusionx.spotify.model.Image;

public class JacksonImage implements Image {

    @JsonProperty(value = "height")
    private int mHeight;

    @JsonProperty(value = "url")
    private String mUrl;

    @JsonProperty(value = "width")
    private int mWidth;

    @Override
    public int getHeight() {
        return mHeight;
    }

    @Override
    public String getUrl() {
        return mUrl;
    }

    @Override
    public int getWidth() {
        return mWidth;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy