getLastComment
Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8 for Server/Data Center? Click here !
Availability
- This routine is available starting with SIL Engine™ 2.5.15 / 2.6.7.
- This routine is available for Jira server and cloud deployment options.
Syntax
getLastComment(issueKey);
Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
issueKey | string | Yes | Issue key. |
Description
Gets all the comment properties for the last issue comment.Return type
The comment is represented with the following keys:
Key name | Description |
---|---|
id | Id of the issue comment. |
text | Comment text. |
author | Author of the comment. |
created | Creation date, as string, can be assigned to a date variable. |
updatedBy | Updater, or empty string if there is no updater. |
updated | Updated date, or empty string if there's no update. |
securityLevel | Comment security level. |
Example
JComment cmt = getLastComment("DEMO-1"); runnerLog("Got comment:" + cmt["text"]);
See also