2018-05-28 10:07:25 +00:00
|
|
|
import * as plugins from './smartuniverse.plugins';
|
|
|
|
|
2019-04-11 15:52:01 +00:00
|
|
|
import * as interfaces from './interfaces';
|
2018-05-28 10:07:25 +00:00
|
|
|
|
2019-04-11 15:52:01 +00:00
|
|
|
export class ClientUniverseMessage implements interfaces.IUniverseMessage {
|
2018-05-28 10:07:25 +00:00
|
|
|
// ======
|
|
|
|
// STATIC
|
|
|
|
// ======
|
2019-04-22 07:58:36 +00:00
|
|
|
public static createMessageFromPayload(messageDescriptor: interfaces.IUniverseMessage) {
|
2019-04-11 15:52:01 +00:00
|
|
|
|
|
|
|
};
|
2018-05-28 10:07:25 +00:00
|
|
|
|
|
|
|
// ========
|
|
|
|
// INSTANCE
|
|
|
|
// ========
|
2019-04-22 07:58:36 +00:00
|
|
|
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
public timestamp: number;
|
|
|
|
public smartTimestamp: plugins.smarttime.TimeStamp;
|
|
|
|
|
|
|
|
public messageText: string;
|
|
|
|
public passphrase: string;
|
|
|
|
public payload: any;
|
|
|
|
public payloadStringType;
|
|
|
|
public targetChannelName: string;
|
2018-05-28 10:07:25 +00:00
|
|
|
constructor(messageArg, payloadArg) {}
|
2019-04-11 15:52:01 +00:00
|
|
|
|
|
|
|
getAsJsonForPayload () {
|
|
|
|
|
|
|
|
}
|
2018-05-28 10:07:25 +00:00
|
|
|
}
|