Skip to content

Commit b98210d

Browse files
authored
adding support for followUpIds in tickets
adding the property of "FollowUpIds", in Ticket model.
1 parent 6aa9e74 commit b98210d

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/ZendeskApi_v2/Models/Tickets/Ticket.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,11 @@ public class Ticket : BaseTicket
131131
/// </summary>
132132
[JsonProperty("incident_count")]
133133
public int? IncidentCount { get; set; }
134+
135+
/// <summary>
136+
/// Any follow-up tickets to this ticket.
137+
/// </summary>
138+
[JsonProperty("followup_ids")]
139+
public IList<long> FollowUpIds { get; set; }
134140
}
135141
}

0 commit comments

Comments
 (0)