MessageReceived

When a CUWO receives a message from another CUWO (sent via PassMessageToCUWOOperation), it will receive a MessageReceived message.

The message is defined as follows:

/**
 * Message of the "parent/child CUWOs" API that informs a CUWO
 * that about a message that was sent to it via the "pass message
 * to CUWO" operation.
 */
class MessageReceived extends AbstractMessage {
    readonly "@type" : string = "n4.cuwo.messages.parentchild.MessageReceived";

    /**
     * The ID of the message.
     */
    public id : string;

    /**
     * The handle of the CUWO that sent the message.
     */
    public cuwoHandle : string;

    /**
     * The message that was sent.
     */
    public message : string;
}