2017-07-02 18:37:11 +01:00
|
|
|
using System.Collections.Generic;
|
2020-03-09 19:47:39 +00:00
|
|
|
using Newtonsoft.Json;
|
2017-07-02 18:37:11 +01:00
|
|
|
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
|
|
{
|
2020-03-09 19:47:39 +00:00
|
|
|
public class AnalysisSegment
|
|
|
|
{
|
|
|
|
[JsonProperty("start")]
|
|
|
|
public double Start { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("duration")]
|
|
|
|
public double Duration { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("confidence")]
|
|
|
|
public double Confidence { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("loudness_start")]
|
|
|
|
public double LoudnessStart { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("loudness_max_time")]
|
|
|
|
public double LoudnessMaxTime { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("loudness_max")]
|
|
|
|
public double LoudnessMax { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("loudness_end")]
|
|
|
|
public double LoudnessEnd { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("pitches")]
|
|
|
|
public List<double> Pitches { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("timbre")]
|
|
|
|
public List<double> Timbre { get; set; }
|
|
|
|
}
|
|
|
|
}
|