sinch-rtc
Version:
RTC JavaScript/Web SDK
21 lines • 552 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimerEvent = void 0;
class TimerEvent {
constructor(id, description, type) {
this.id = id;
this.description = description;
this.type = type;
}
equals(o) {
return o instanceof TimerEvent && o.id == this.id;
}
getHashCode() {
return this.id;
}
toString() {
return `TimerEvent(Id=${this.id}, ${this.description})`;
}
}
exports.TimerEvent = TimerEvent;
//# sourceMappingURL=TimerEvent.js.map