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