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

org.jmusixmatch.entity.error.ErrorMessage Maven / Gradle / Ivy

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy