@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
26 lines (25 loc) • 698 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AndConjunction = void 0;
const AbstractConjunction_1 = require("./AbstractConjunction");
const ConditionType_1 = require("./ConditionType");
/**
* @export
* @class AndConjunction
*/
class AndConjunction extends AbstractConjunction_1.default {
constructor(obj) {
super(obj);
/**
* Discriminator property for AbstractCondition
* @type {string}
* @memberof AndConjunction
*/
this.type = ConditionType_1.default.AND;
if (!obj) {
return;
}
}
}
exports.AndConjunction = AndConjunction;
exports.default = AndConjunction;