using System; using System.Text; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using Newtonsoft.Json; namespace RadarrSharp.Models { /// /// /// [DataContract] public class InlineResponse2001Changes { /// /// Gets or Sets _New /// [DataMember(Name="new", EmitDefaultValue=false)] [JsonProperty(PropertyName = "new")] public List _New { get; set; } /// /// Gets or Sets _Fixed /// [DataMember(Name="fixed", EmitDefaultValue=false)] [JsonProperty(PropertyName = "fixed")] public List _Fixed { get; set; } /// /// Get the string presentation of the object /// /// String presentation of the object public override string ToString() { var sb = new StringBuilder(); sb.Append("class InlineResponse2001Changes {\n"); sb.Append(" _New: ").Append(_New).Append("\n"); sb.Append(" _Fixed: ").Append(_Fixed).Append("\n"); sb.Append("}\n"); return sb.ToString(); } /// /// Get the JSON string presentation of the object /// /// JSON string presentation of the object public string ToJson() { return JsonConvert.SerializeObject(this, Formatting.Indented); } } }