co.fusionx.spotify.model.jackson.JacksonError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-model Show documentation
Show all versions of spotify-model Show documentation
Spotify Model classes for Spotify APIs
The newest version!
package co.fusionx.spotify.model.jackson;
import com.fasterxml.jackson.annotation.JsonProperty;
public class JacksonError implements co.fusionx.spotify.model.Error {
@JsonProperty(value = "status")
private int mStatus;
@JsonProperty(value = "message")
private String mMessage;
@Override
public int getStatus() {
return mStatus;
}
@Override
public String getMessage() {
return mMessage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy