svix
Version:
Svix webhooks API client and webhook verification library
22 lines • 674 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EndpointEnabledEventDataSerializer = void 0;
exports.EndpointEnabledEventDataSerializer = {
_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=endpointEnabledEventData.js.map