add eventTypes manager

This commit is contained in:
Aleksey Chichenkov 2019-03-25 12:15:00 +03:00
parent 7cf846b3ff
commit e883fd8a52
1 changed files with 38 additions and 0 deletions

View File

@ -10,5 +10,43 @@
* @memberof EventTypes
*/
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
}