getWorklogUpdatedDate
Description
Returns the last date when the worklog was updated.
Parameters
Return Type
Date
Examples
Example 1
print(getWorklogUpdatedDate(11201))
Prints the last date when the worklog with id = 11201 was updated.
Example 2
for(number id in getWorklogIds("admin",key)){
print (getWorklogUpdatedDate(id))
}
Prints the last date when the admin's worklogs of the current issue were updated.