Package org.vx68k.bitbucket.api
Interface BitbucketIssue.Comment
-
- Enclosing interface:
- BitbucketIssue
public static interface BitbucketIssue.CommentIssue comment on Bitbucket Cloud.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BitbucketRenderedgetContent()Returns the content of the comment.InstantgetCreated()Returns the time when the comment was created.intgetId()Returns the identifier of the comment.BitbucketIssuegetIssue()Returns the issue to which the comment belongs.InstantgetUpdated()Returns the time when the comment was last updated.BitbucketUsergetUser()Returns the user who made the comment.
-
-
-
Method Detail
-
getIssue
BitbucketIssue getIssue()
Returns the issue to which the comment belongs.- Returns:
- the issue to which the comment belongs
-
getId
int getId()
Returns the identifier of the comment.- Returns:
- the identifier of the comment
-
getUser
BitbucketUser getUser()
Returns the user who made the comment.- Returns:
- the user who made the comment
-
getContent
BitbucketRendered getContent()
Returns the content of the comment.- Returns:
- the content of the comment
-
getCreated
Instant getCreated()
Returns the time when the comment was created.- Returns:
- the time when the comment was created
-
getUpdated
Instant getUpdated()
Returns the time when the comment was last updated.- Returns:
- the time when the comment was last updated
-
-