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

de.sonallux.spotify.api.models.AudioAnalysisMeta Maven / Gradle / Ivy

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