@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 633 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PoisEndpointCredentials = void 0;
var Mapper_1 = require("../common/Mapper");
/**
* @export
* @class PoisEndpointCredentials
*/
var PoisEndpointCredentials = /** @class */ (function () {
function PoisEndpointCredentials(obj) {
if (!obj) {
return;
}
this.username = (0, Mapper_1.map)(obj.username);
this.password = (0, Mapper_1.map)(obj.password);
}
return PoisEndpointCredentials;
}());
exports.PoisEndpointCredentials = PoisEndpointCredentials;
exports.default = PoisEndpointCredentials;