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.
2 parents 107c220 + 9734478 commit 356c24cCopy full SHA for 356c24c
src/main/java/org/zendesk/client/v2/Zendesk.java
@@ -561,6 +561,11 @@ public Iterable<Comment> getRequestComments(long id) {
561
return new PagedIterable<Comment>(tmpl("/requests/{id}/comments.json").set("id", id),
562
handleList(Comment.class, "comments"));
563
}
564
+
565
+ public Iterable<Comment> getTicketComments(long id) {
566
+ return new PagedIterable<Comment>(tmpl("/tickets/{id}/comments.json").set("id", id),
567
+ handleList(Comment.class, "comments"));
568
+ }
569
570
public Comment getRequestComment(org.zendesk.client.v2.model.Request request, Comment comment) {
571
checkHasId(comment);
0 commit comments