All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jmusixmatch.entity.track.get.TrackGetBody Maven / Gradle / Ivy

package org.jmusixmatch.entity.track.get;

import com.google.gson.annotations.SerializedName;

import org.jmusixmatch.entity.track.TrackData;

/**
 * A class to denote the body part of the JSON.
 *
 * @author Sachin Handiekar
 * @version 1.0
 */
public class TrackGetBody {
    @SerializedName("track")
    private TrackData track;

    public void setTrack(TrackData track) {
        this.track = track;
    }

    public TrackData getTrack() {
        return track;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy