Package org.vx68k.bitbucket.api
Interface BitbucketIssue.Comment
-
- Enclosing interface:
- BitbucketIssue
public static interface BitbucketIssue.Comment
Issue comment on Bitbucket Cloud.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BitbucketRendered
getContent()
Returns the content of the comment.Instant
getCreated()
Returns the time when the comment was created.int
getId()
Returns the identifier of the comment.BitbucketIssue
getIssue()
Returns the issue to which the comment belongs.Instant
getUpdated()
Returns the time when the comment was last updated.BitbucketUser
getUser()
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
-
-