node-hca
Version:
Node.js client for HCA
33 lines (29 loc) • 833 B
JavaScript
'use strict';
(function() {
var Display = function() {
this.displayName = '';
this.id = 0;
this.currentState = 0;
this.iconName = '';
this.shortTapAction = 0;
this.longTapAction = 0;
this.noShow = 0;
this.displayNameFormat = 0;
this.currentIconName = '';
this.currentIconLabel = '';
this.displayType = 0;
this.displayNameFormatLegacy = 0;
this.itemIds = [];
this.iconRepresentation = 0;
this.backgroundType = 0;
this.backgroundPath = '';
this.noAutoClose = 0;
this.displayLabelName = '';
this.htmlPath = '';
this.htmlUrl = '';
this.themeName = '';
this.objectType = null;
this.alexaName = null;
};
module.exports = Display;
})();