UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

30 lines (29 loc) 918 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AkamaiNetStorageOutput = void 0; const Mapper_1 = require("../common/Mapper"); const Output_1 = require("./Output"); const OutputType_1 = require("./OutputType"); /** * @export * @class AkamaiNetStorageOutput */ class AkamaiNetStorageOutput extends Output_1.default { constructor(obj) { super(obj); /** * Discriminator property for Output * @type {string} * @memberof AkamaiNetStorageOutput */ this.type = OutputType_1.default.AKAMAI_NETSTORAGE; if (!obj) { return; } this.host = (0, Mapper_1.map)(obj.host); this.username = (0, Mapper_1.map)(obj.username); this.password = (0, Mapper_1.map)(obj.password); } } exports.AkamaiNetStorageOutput = AkamaiNetStorageOutput; exports.default = AkamaiNetStorageOutput;