createCaseComment
inline suspend fun SecurityIrClient.createCaseComment(crossinline block: CreateCaseCommentRequest.Builder.() -> Unit): CreateCaseCommentResponse
Grants permission to add a comment to an existing case.
Samples
fun main() {
//sampleStart
// Invoke CreateCaseComment
val resp = securityIrClient.createCaseComment {
caseId = "8403556009"
body = "Case comment body."
}
//sampleEnd
}