@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
39 lines • 2.08 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { KalturaTypesFactory } from '../kaltura-types-factory';
import { KalturaEntryServerNodeStatus } from './KalturaEntryServerNodeStatus';
import { KalturaEntryServerNodeType } from './KalturaEntryServerNodeType';
import { KalturaObjectBase } from '../kaltura-object-base';
var KalturaEntryServerNode = (function (_super) {
__extends(KalturaEntryServerNode, _super);
function KalturaEntryServerNode(data) {
return _super.call(this, data) || this;
}
KalturaEntryServerNode.prototype._getMetadata = function () {
var result = _super.prototype._getMetadata.call(this);
Object.assign(result.properties, {
objectType: { type: 'c', default: 'KalturaEntryServerNode' },
id: { type: 'n', readOnly: true },
entryId: { type: 's', readOnly: true },
serverNodeId: { type: 'n', readOnly: true },
partnerId: { type: 'n', readOnly: true },
createdAt: { type: 'd', readOnly: true },
updatedAt: { type: 'd', readOnly: true },
status: { type: 'en', readOnly: true, subTypeConstructor: KalturaEntryServerNodeStatus, subType: 'KalturaEntryServerNodeStatus' },
serverType: { type: 'es', readOnly: true, subTypeConstructor: KalturaEntryServerNodeType, subType: 'KalturaEntryServerNodeType' }
});
return result;
};
return KalturaEntryServerNode;
}(KalturaObjectBase));
export { KalturaEntryServerNode };
KalturaTypesFactory.registerType('KalturaEntryServerNode', KalturaEntryServerNode);
//# sourceMappingURL=KalturaEntryServerNode.js.map