Add multicast support to BaseMessage model

This commit is contained in:
ChronosX88 2020-07-16 12:23:42 +04:00
parent 5ac87b9a2a
commit dc3bb4b3d1
Signed by: ChronosXYZ
GPG Key ID: 085A69A82C8C511A

View File

@ -54,15 +54,16 @@ interface BaseMessage {
* Type of message (used to determine which extension this message belongs to) * Type of message (used to determine which extension this message belongs to)
*/ */
type: string, type: string,
/** /**
* From which entity this message is send * From which entity this message is send
*/ */
from: EntityID, from: EntityID,
/** /**
* Message recipient * Message recipients
*/ */
to: EntityID, toAddresses: EntityID[],
/** /**
* Operation success indicator (used to determine if the error happened while processing request) - MUST be only in response from server * Operation success indicator (used to determine if the error happened while processing request) - MUST be only in response from server