UNPKG

@seniorsistemas/senior-sam

Version:
71 lines 1.52 kB
"use strict"; const BaseModel_1 = require("../BaseModel"); module.exports = class Camera extends BaseModel_1.BaseModel { set id(value) { this._id = value; } get id() { return this._id; } set name(value) { this._name = value; } get name() { return this._name; } set isPTZ(value) { this._isPTZ = value; } get isPTZ() { return this._isPTZ; } set dvrServer(value) { this._dvrServer = value; } get dvrServer() { return this._dvrServer; } set cameraServerId(value) { this._cameraServerId = value; } get cameraServerId() { return this._cameraServerId; } set streamLink(value) { this._streamLink = value; } get streamLink() { return this._streamLink; } set physicalLocation(value) { this._physicalLocation = value; } get _hysicalLocation() { return this._physicalLocation; } set status(value) { this._status = value; } get status() { return this._status; } set cctvProxy(value) { this._cctvProxy = value; } get cctvProxy() { return this._cctvProxy; } set devices(value) { this._devices = value; } get devices() { return this._devices; } set urlStreaming(value) { this._urlStreaming = value; } get urlStreaming() { return this._urlStreaming; } }; //# sourceMappingURL=Camera.js.map