Skip to content

Commit

Permalink
Add extra fields to JobStatus Result object (#525)
Browse files Browse the repository at this point in the history
* Add extra fields to JobStatus Result object

* Update src/ZendeskApi_v2/Models/Shared/Result.cs
  • Loading branch information
APErebus committed Aug 22, 2021
1 parent b4a8752 commit 92925c4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/ZendeskApi_v2/Models/Shared/Result.cs
Expand Up @@ -4,7 +4,6 @@ namespace ZendeskApi_v2.Models.Shared
{
public class Result
{

[JsonProperty("title")]
public string Title { get; set; }

Expand All @@ -22,5 +21,14 @@ public class Result

[JsonProperty("status")]
public string Status { get; set; }

[JsonProperty("index")]
public long Index { get; set; }

[JsonProperty("error")]
public string Error { get; set; }

[JsonProperty("details")]
public string Details { get; set; }
}
}
}

0 comments on commit 92925c4

Please sign in to comment.