RecipientRights
data class RecipientRights(val read: Boolean = true, val forward: Boolean = true, val revoke: Boolean = false)
RecipientRights represents the rights a user can have over an encrypted message or an encryption session.
Constructors
RecipientRights | constructor(read: Boolean = true, forward: Boolean = true, revoke: Boolean = false) |
Properties
Name | Summary |
---|---|
forward | val forward: Boolean = true The right to revoke another user from a message, or to remove rights from them. |
read | val read: Boolean = true The right to read the message. |
revoke | val revoke: Boolean = false The right to forward the message to another user. |