org.jmusixmatch.snippet.get.SnippetGetBody 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
The newest version!
package org.jmusixmatch.snippet.get;
import com.google.gson.annotations.SerializedName;
import org.jmusixmatch.snippet.Snippet;
public class SnippetGetBody {
@SerializedName("snippet")
private Snippet snippet;
public Snippet getSnippet() {
return snippet;
}
public void setSnippet(Snippet snippet) {
this.snippet = snippet;
}
}