AudioAnalysisMeta

data class AudioAnalysisMeta(analyzerVersion: String, platform: String, detailedStatus: String, statusCode: Int?, timestamp: Long, analysisTime: Float, inputProcess: String)

Information about the analysis run

Parameters

analyzerVersion

Which version of the Spotify analyzer the analysis was run on

platform

The OS the analysis was run on

detailedStatus

Whether there was an error in the analysis or "OK"

statusCode

0 on success, any other integer on error

timestamp

When this analysis was completed

analysisTime

How long, in milliseconds, this analysis took to run

inputProcess

The process used in the analysis

Constructors

AudioAnalysisMeta
Link copied to clipboard
common
fun AudioAnalysisMeta(analyzerVersion: String, platform: String, detailedStatus: String, statusCode: Int? = null, timestamp: Long, analysisTime: Float, inputProcess: String)
Which version of the Spotify analyzer the analysis was run on

Properties

analysisTime
Link copied to clipboard
common
val analysisTime: Float
How long, in milliseconds, this analysis took to run
analyzerVersion
Link copied to clipboard
common
val analyzerVersion: String
Which version of the Spotify analyzer the analysis was run on
detailedStatus
Link copied to clipboard
common
val detailedStatus: String
Whether there was an error in the analysis or "OK"
inputProcess
Link copied to clipboard
common
val inputProcess: String
The process used in the analysis
platform
Link copied to clipboard
common
val platform: String
The OS the analysis was run on
statusCode
Link copied to clipboard
common
val statusCode: Int? = null
0 on success, any other integer on error
timestamp
Link copied to clipboard
common
val timestamp: Long
When this analysis was completed

Sources

common source
Link copied to clipboard