AudioAnalysisMeta

@Serializable
data class AudioAnalysisMeta(val analyzerVersion: String, val platform: String, val detailedStatus: String, val statusCode: Int? = null, val timestamp: Long, val analysisTime: Float, val inputProcess: String)(source)

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

Link copied to clipboard
constructor(analyzerVersion: String, platform: String, detailedStatus: String, statusCode: Int? = null, timestamp: Long, analysisTime: Float, inputProcess: String)

Properties

Link copied to clipboard
@SerialName(value = "analysis_time")
val analysisTime: Float
Link copied to clipboard
@SerialName(value = "analyzer_version")
val analyzerVersion: String
Link copied to clipboard
@SerialName(value = "detailed_status")
val detailedStatus: String
Link copied to clipboard
@SerialName(value = "input_process")
val inputProcess: String
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "status_code")
val statusCode: Int? = null
Link copied to clipboard