17 lines
534 B
JavaScript
17 lines
534 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.SinkStatusInSerializer = exports.SinkStatusIn = void 0;
|
|
var SinkStatusIn;
|
|
(function (SinkStatusIn) {
|
|
SinkStatusIn["Enabled"] = "enabled";
|
|
SinkStatusIn["Disabled"] = "disabled";
|
|
})(SinkStatusIn = exports.SinkStatusIn || (exports.SinkStatusIn = {}));
|
|
exports.SinkStatusInSerializer = {
|
|
_fromJsonObject(object) {
|
|
return object;
|
|
},
|
|
_toJsonObject(self) {
|
|
return self;
|
|
},
|
|
};
|
|
//# sourceMappingURL=sinkStatusIn.js.map
|