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