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 62df453 commit c3d82b7Copy full SHA for c3d82b7
src/issue/Comments.php
@@ -0,0 +1,42 @@
1
+<?php
2
+
3
+namespace JiraRestApi\Issue;
4
5
+class Comment {
6
+ /* @var string */
7
+ public $self;
8
9
10
+ public $id;
11
12
+ /* @var Reporter */
13
+ public $author;
14
15
16
+ public $body;
17
18
19
+ public $updateAuthor;
20
21
+ /* @var DateTime */
22
+ public $created;
23
24
25
+ public $updated;
26
+}
27
28
+class Comments {
29
+ /* @var int */
30
+ public $startAt;
31
32
33
+ public $maxResults;
34
35
36
+ public $total;
37
38
+ /* @var CommentList[\JiraRestApi\Issue\Comment] */
39
+ public $comments;
40
41
42
+?>
0 commit comments