@mcma/core
Version:
Node module with type definitions and helper utils for the EBU MCMA framework
15 lines (14 loc) • 536 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationEndpoint = void 0;
const mcma_object_1 = require("./mcma-object");
const utils_1 = require("../utils");
class NotificationEndpoint extends mcma_object_1.McmaObject {
httpEndpoint;
constructor(properties) {
super("NotificationEndpoint");
this.httpEndpoint = properties.httpEndpoint;
utils_1.Utils.checkProperty(this, "httpEndpoint", "url", true);
}
}
exports.NotificationEndpoint = NotificationEndpoint;