Skip to content

Commit c3d82b7

Browse files
committed
cm
1 parent 62df453 commit c3d82b7

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

src/issue/Comments.php

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?php
2+
3+
namespace JiraRestApi\Issue;
4+
5+
class Comment {
6+
/* @var string */
7+
public $self;
8+
9+
/* @var string */
10+
public $id;
11+
12+
/* @var Reporter */
13+
public $author;
14+
15+
/* @var string */
16+
public $body;
17+
18+
/* @var Reporter */
19+
public $updateAuthor;
20+
21+
/* @var DateTime */
22+
public $created;
23+
24+
/* @var DateTime */
25+
public $updated;
26+
}
27+
28+
class Comments {
29+
/* @var int */
30+
public $startAt;
31+
32+
/* @var int */
33+
public $maxResults;
34+
35+
/* @var int */
36+
public $total;
37+
38+
/* @var CommentList[\JiraRestApi\Issue\Comment] */
39+
public $comments;
40+
}
41+
42+
?>

0 commit comments

Comments
 (0)