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