
org.jmusixmatch.entity.lyrics.get.LyricsGetContainer 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.lyrics.get;
import com.google.gson.annotations.SerializedName;
import org.jmusixmatch.entity.Header;
public class LyricsGetContainer {
@SerializedName("body")
private LyricsGetBody body;
@SerializedName("header")
private Header header;
public Header getHeader() {
return header;
}
public void setHeader(Header header) {
this.header = header;
}
public LyricsGetBody getBody() {
return body;
}
public void setBody(LyricsGetBody body) {
this.body = body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy