
co.fusionx.spotify.model.jackson.JacksonImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Spotify Model classes for Spotify APIs
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