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 AnalysisMeta
|
|
|
|
{
|
2020-04-29 11:12:06 +01:00
|
|
|
[JsonProperty("analyzer_version")]
|
2020-03-09 19:47:39 +00:00
|
|
|
public string AnalyzerVersion { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("platform")]
|
|
|
|
public string Platform { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("status_code")]
|
|
|
|
public int StatusCode { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("detailed_status")]
|
|
|
|
public string DetailedStatus { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("timestamp")]
|
|
|
|
public long Timestamp { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("analysis_time")]
|
|
|
|
public double AnalysisTime { get; set; }
|
2017-07-02 18:37:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("input_process")]
|
|
|
|
public string InputProcess { get; set; }
|
|
|
|
}
|
|
|
|
}
|