Web-based responsive document annotation tool
activeannoservice / user.message / Message
data class Message
A message is a text between two users, optionally relating to an AnnotationResult
| Name | Summary |
|---|---|
| <init> | A message is a text between two users, optionally relating to an AnnotationResultMessage(recipient: UserIdentifier, sender: UserIdentifier, message: String, annotatedDocument: AnnotationResult?, timestamp: Long = System.currentTimeMillis(), read: Boolean = false, _id: String? = null) |
| Name | Summary |
|---|---|
| _id | val _id: String? |
| annotatedDocument | val annotatedDocument: AnnotationResult? |
| message | val message: String |
| read | var read: Boolean |
| recipient | val recipient: UserIdentifier |
| sender | val sender: UserIdentifier |
| timestamp | val timestamp: Long |