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