
org.jmusixmatch.entity.error.ErrorMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jMusixMatch Show documentation
Show all versions of jMusixMatch Show documentation
Java MusixMatch API by Sachin Handiekar
package org.jmusixmatch.entity.error;
import com.google.gson.annotations.SerializedName;
public class ErrorMessage {
@SerializedName("message")
private ErrorMessageContainer messageContainer;
/**
* @param messageContainer the messageContainer to set
*/
public void setMessageContainer(ErrorMessageContainer messageContainer) {
this.messageContainer = messageContainer;
}
/**
* @return the messageContainer
*/
public ErrorMessageContainer getMessageContainer() {
return messageContainer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy