de.sonallux.spotify.api.models.AudioAnalysisMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java wrapper for Spotify's Web API
The newest version!
package de.sonallux.spotify.api.models;
import lombok.*;
/**
*
*/
@Getter
@Setter
@NoArgsConstructor
public class AudioAnalysisMeta {
/**
* The amount of time taken to analyze this track.
*/
public float analysisTime;
/**
* The version of the Analyzer used to analyze this track.
*/
public String analyzerVersion;
/**
* A detailed status code for this track. If analysis data is missing, this code may explain why.
*/
public String detailedStatus;
/**
* The method used to read the track's audio data.
*/
public String inputProcess;
/**
* The platform used to read the track's audio data.
*/
public String platform;
/**
* The return code of the analyzer process. 0 if successful, 1 if any errors occurred.
*/
public int statusCode;
/**
* The Unix timestamp (in seconds) at which this track was analyzed.
*/
public long timestamp;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy