22 lines
674 B
JavaScript
22 lines
674 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.EndpointUpdatedEventDataSerializer = void 0;
|
|
exports.EndpointUpdatedEventDataSerializer = {
|
|
_fromJsonObject(object) {
|
|
return {
|
|
appId: object["appId"],
|
|
appUid: object["appUid"],
|
|
endpointId: object["endpointId"],
|
|
endpointUid: object["endpointUid"],
|
|
};
|
|
},
|
|
_toJsonObject(self) {
|
|
return {
|
|
appId: self.appId,
|
|
appUid: self.appUid,
|
|
endpointId: self.endpointId,
|
|
endpointUid: self.endpointUid,
|
|
};
|
|
},
|
|
};
|
|
//# sourceMappingURL=endpointUpdatedEventData.js.map
|