
org.jmusixmatch.entity.track.Track 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;
import com.google.gson.annotations.SerializedName;
/**
* A class to denote the track entity.
*
* @author Sachin Handiekar
* @version 1.0
*/
public class Track {
@SerializedName("track")
private TrackData track;
public void setTrack(TrackData track) {
this.track = track;
}
public TrackData getTrack() {
return track;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy