com.lajospolya.spotifyapiwrapper.response.AudioAnalysis Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-api-wrapper Show documentation
Show all versions of spotify-api-wrapper Show documentation
This project wraps the Spotify public API in order to allow users to intuitively use it
package com.lajospolya.spotifyapiwrapper.response;
import java.util.List;
/**
* @author Lajos Polya
* Represent the response of GetAudioAnalysis as described at
* https://developer.spotify.com/documentation/web-api/reference-beta/
*/
public class AudioAnalysis
{
private Meta meta;
private List bars;
private List beats;
private List sections;
private List segments;
private List tatums;
private AudioAnalysisTrack track;
public Meta getMeta()
{
return meta;
}
public void setMeta(Meta meta)
{
this.meta = meta;
}
public List getBars()
{
return bars;
}
public void setBars(List bars)
{
this.bars = bars;
}
public List getBeats()
{
return beats;
}
public void setBeats(List beats)
{
this.beats = beats;
}
public List getSections()
{
return sections;
}
public void setSections(List sections)
{
this.sections = sections;
}
public List getSegments()
{
return segments;
}
public void setSegments(List segments)
{
this.segments = segments;
}
public List getTatums()
{
return tatums;
}
public void setTatums(List tatums)
{
this.tatums = tatums;
}
public AudioAnalysisTrack getTrack()
{
return track;
}
public void setTrack(AudioAnalysisTrack track)
{
this.track = track;
}
}