updateCaseComment
Grants permission to update an existing case comment.
Samples
fun main() {
//sampleStart
// Invoke UpdateCaseComment
val resp = securityIrClient.updateCaseComment {
caseId = "8403556009"
commentId = "000000"
body = "Updated case comment."
}
//sampleEnd
}