Skip to content

Commit

Permalink
cm
Browse files Browse the repository at this point in the history
  • Loading branch information
lesstif committed Feb 3, 2015
1 parent 62df453 commit c3d82b7
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions src/issue/Comments.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php

namespace JiraRestApi\Issue;

class Comment {
/* @var string */
public $self;

/* @var string */
public $id;

/* @var Reporter */
public $author;

/* @var string */
public $body;

/* @var Reporter */
public $updateAuthor;

/* @var DateTime */
public $created;

/* @var DateTime */
public $updated;
}

class Comments {
/* @var int */
public $startAt;

/* @var int */
public $maxResults;

/* @var int */
public $total;

/* @var CommentList[\JiraRestApi\Issue\Comment] */
public $comments;
}

?>

0 comments on commit c3d82b7

Please sign in to comment.