UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

20 lines (19 loc) 483 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CustomAttribute = void 0; const Mapper_1 = require("../common/Mapper"); /** * @export * @class CustomAttribute */ class CustomAttribute { constructor(obj) { if (!obj) { return; } this.key = (0, Mapper_1.map)(obj.key); this.value = (0, Mapper_1.map)(obj.value); } } exports.CustomAttribute = CustomAttribute; exports.default = CustomAttribute;