add eventTypes manager
This commit is contained in:
parent
7cf846b3ff
commit
e883fd8a52
@ -10,5 +10,43 @@
|
|||||||
* @memberof EventTypes
|
* @memberof EventTypes
|
||||||
*/
|
*/
|
||||||
function EventType() {
|
function EventType() {
|
||||||
|
/**
|
||||||
|
* Вернет список атрибутов типа события.
|
||||||
|
*
|
||||||
|
* @public
|
||||||
|
* @function get
|
||||||
|
* @memberof EventTypes.EventType
|
||||||
|
* @returns {v2.map<v2.string, v2.vc>}
|
||||||
|
*/
|
||||||
|
this.attributes = function () {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @public
|
||||||
|
* @function cl_alarm_node_ids
|
||||||
|
* @memberof EventTypes.EventType
|
||||||
|
* @returns {v2.set<v2.integer>}
|
||||||
|
*/
|
||||||
|
this.cl_alarm_node_ids = function () {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @public
|
||||||
|
* @function alarm_node_id
|
||||||
|
* @memberof EventTypes.EventType
|
||||||
|
* @returns {v2.integer}
|
||||||
|
*/
|
||||||
|
this.alarm_node_id = function () {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
// attributes
|
||||||
|
// cl_alarm_node_ids
|
||||||
|
// alarm_node_id
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user