@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
14 lines • 626 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChangeType = void 0;
const gettext_js_1 = require("../gettext.js");
/**
* An audit record can have one of the following change type
*/
var ChangeType;
(function (ChangeType) {
ChangeType[ChangeType["ADDED"] = (0, gettext_js_1.gettext)('ADDED')] = "ADDED";
ChangeType[ChangeType["REPLACED"] = (0, gettext_js_1.gettext)('REPLACED')] = "REPLACED";
ChangeType[ChangeType["REMOVED"] = (0, gettext_js_1.gettext)('REMOVED')] = "REMOVED";
})(ChangeType || (exports.ChangeType = ChangeType = {}));
//# sourceMappingURL=ChangeType.js.map