UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 556 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EmailNotification = void 0; const Mapper_1 = require("../common/Mapper"); const Notification_1 = require("./Notification"); /** * @export * @class EmailNotification */ class EmailNotification extends Notification_1.default { constructor(obj) { super(obj); if (!obj) { return; } this.emails = (0, Mapper_1.mapArray)(obj.emails); } } exports.EmailNotification = EmailNotification; exports.default = EmailNotification;