@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
22 lines (21 loc) • 731 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PlayerThirdPartyLicensing = void 0;
const Mapper_1 = require("../common/Mapper");
/**
* @export
* @class PlayerThirdPartyLicensing
*/
class PlayerThirdPartyLicensing {
constructor(obj) {
if (!obj) {
return;
}
this.licenseCheckServer = (0, Mapper_1.map)(obj.licenseCheckServer);
this.licenseCheckTimeout = (0, Mapper_1.map)(obj.licenseCheckTimeout);
this.errorAction = (0, Mapper_1.map)(obj.errorAction);
this.timeoutAction = (0, Mapper_1.map)(obj.timeoutAction);
}
}
exports.PlayerThirdPartyLicensing = PlayerThirdPartyLicensing;
exports.default = PlayerThirdPartyLicensing;