ActiveAnno

Web-based responsive document annotation tool

View the Project on GitHub MaxMello/ActiveAnno

activeannoservice / user.message / Message

Message

data class Message

A message is a text between two users, optionally relating to an AnnotationResult

Constructors

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)

Properties

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