matterbridge-roborock-vacuum-plugin
Version:
Matterbridge Roborock Vacuum Plugin
18 lines • 433 B
JavaScript
export class HeaderMessage {
version;
seq;
nonce;
timestamp;
protocol;
constructor(version, seq, nonce, timestamp, protocol) {
this.version = version;
this.seq = seq;
this.nonce = nonce;
this.timestamp = timestamp;
this.protocol = protocol;
}
isForProtocol(protocol) {
return this.protocol === protocol;
}
}
//# sourceMappingURL=headerMessage.js.map