We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a8752 commit 92925c4Copy full SHA for 92925c4
src/ZendeskApi_v2/Models/Shared/Result.cs
@@ -4,7 +4,6 @@ namespace ZendeskApi_v2.Models.Shared
4
{
5
public class Result
6
7
-
8
[JsonProperty("title")]
9
public string Title { get; set; }
10
@@ -22,5 +21,14 @@ public class Result
22
21
23
[JsonProperty("status")]
24
public string Status { get; set; }
+
25
+ [JsonProperty("index")]
26
+ public long Index { get; set; }
27
28
+ [JsonProperty("error")]
29
+ public string Error { get; set; }
30
31
+ [JsonProperty("details")]
32
+ public string Details { get; set; }
33
}
-}
34
+}
0 commit comments