Add documentation

This commit is contained in:
Niels Andriesse 2021-05-13 10:33:34 +10:00
parent 115bc9b159
commit 288d76d292
2 changed files with 23 additions and 13 deletions

View File

@ -3,13 +3,23 @@ package org.session.libsession.snode
import org.session.libsignal.service.loki.utilities.removing05PrefixIfNeeded import org.session.libsignal.service.loki.utilities.removing05PrefixIfNeeded
data class SnodeMessage( data class SnodeMessage(
// The hex encoded public key of the recipient. /**
* The hex encoded public key of the recipient.
*/
val recipient: String, val recipient: String,
// The content of the message. /**
* The content of the message.
*/
val data: String, val data: String,
// The time to live for the message in milliseconds. /**
* The time to live for the message in milliseconds.
*/
val ttl: Long, val ttl: Long,
// When the proof of work was calculated. /**
* When the proof of work was calculated.
*
* **Note:** Expressed as milliseconds since 00:00:00 UTC on 1 January 1970.
*/
val timestamp: Long val timestamp: Long
) { ) {