mirror of
https://github.com/cadmium-im/cadmium-docs-legacy.git
synced 2024-11-22 02:12:21 +00:00
Add multicast support to BaseMessage model
This commit is contained in:
parent
5ac87b9a2a
commit
dc3bb4b3d1
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user