
org.jmusixmatch.entity.lyrics.get.LyricsGetBody 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.lyrics.Lyrics;
public class LyricsGetBody {
@SerializedName("lyrics")
private Lyrics lyrics;
public void setLyrics(Lyrics lyrics) {
this.lyrics = lyrics;
}
public Lyrics getLyrics() {
return lyrics;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy