2020-03-09 19:47:39 +00:00
|
|
|
using Newtonsoft.Json;
|
2016-03-31 11:07:29 +01:00
|
|
|
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
|
|
{
|
2020-03-09 19:47:39 +00:00
|
|
|
public class AudioFeatures : BasicModel
|
|
|
|
{
|
|
|
|
[JsonProperty("acousticness")]
|
|
|
|
public float Acousticness { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("analysis_url")]
|
|
|
|
public string AnalysisUrl { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("danceability")]
|
|
|
|
public float Danceability { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("duration_ms")]
|
|
|
|
public int DurationMs { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("energy")]
|
|
|
|
public float Energy { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("id")]
|
|
|
|
public string Id { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("instrumentalness")]
|
|
|
|
public float Instrumentalness { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("key")]
|
|
|
|
public int Key { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("liveness")]
|
|
|
|
public float Liveness { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("loudness")]
|
|
|
|
public float Loudness { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("mode")]
|
|
|
|
public int Mode { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("speechiness")]
|
|
|
|
public float Speechiness { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("tempo")]
|
|
|
|
public float Tempo { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("time_signature")]
|
|
|
|
public int TimeSignature { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("track_href")]
|
|
|
|
public string TrackHref { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("type")]
|
|
|
|
public string Type { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("uri")]
|
|
|
|
public string Uri { get; set; }
|
2016-03-31 11:07:29 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("valence")]
|
|
|
|
public float Valence { get; set; }
|
|
|
|
}
|
2016-03-31 11:07:29 +01:00
|
|
|
}
|