Skip to content

Commit

Permalink
Add assignee_email to ticket class (#586)
Browse files Browse the repository at this point in the history
  • Loading branch information
huer12 authored Nov 29, 2023
1 parent 9bdab30 commit 1a9ae09
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ZendeskApi_v2/Models/Tickets/Ticket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ public class Ticket : BaseTicket
[JsonProperty("submitter_id")]
public long? SubmitterId { get; set; }

[JsonProperty("assignee_email")]
public string AssigneeEmail { get; set; }

[JsonProperty("assignee_id")]
public long? AssigneeId { get; set; }

Expand Down Expand Up @@ -131,7 +134,7 @@ public class Ticket : BaseTicket
/// </summary>
[JsonProperty("incident_count")]
public int? IncidentCount { get; set; }

/// <summary>
/// Any follow-up tickets to this ticket.
/// </summary>
Expand Down

0 comments on commit 1a9ae09

Please sign in to comment.