@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
48 lines • 2.4 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 { KalturaCuePointType } from './KalturaCuePointType';
import { KalturaCuePointStatus } from './KalturaCuePointStatus';
import { KalturaNullableBoolean } from './KalturaNullableBoolean';
import { KalturaObjectBase } from '../kaltura-object-base';
var KalturaCuePoint = (function (_super) {
__extends(KalturaCuePoint, _super);
function KalturaCuePoint(data) {
return _super.call(this, data) || this;
}
KalturaCuePoint.prototype._getMetadata = function () {
var result = _super.prototype._getMetadata.call(this);
Object.assign(result.properties, {
objectType: { type: 'c', default: 'KalturaCuePoint' },
id: { type: 's', readOnly: true },
cuePointType: { type: 'es', readOnly: true, subTypeConstructor: KalturaCuePointType, subType: 'KalturaCuePointType' },
status: { type: 'en', readOnly: true, subTypeConstructor: KalturaCuePointStatus, subType: 'KalturaCuePointStatus' },
entryId: { type: 's' },
partnerId: { type: 'n', readOnly: true },
createdAt: { type: 'd', readOnly: true },
updatedAt: { type: 'd', readOnly: true },
triggeredAt: { type: 'd' },
tags: { type: 's' },
startTime: { type: 'n' },
userId: { type: 's', readOnly: true },
partnerData: { type: 's' },
partnerSortValue: { type: 'n' },
forceStop: { type: 'en', subTypeConstructor: KalturaNullableBoolean, subType: 'KalturaNullableBoolean' },
thumbOffset: { type: 'n' },
systemName: { type: 's' }
});
return result;
};
return KalturaCuePoint;
}(KalturaObjectBase));
export { KalturaCuePoint };
KalturaTypesFactory.registerType('KalturaCuePoint', KalturaCuePoint);
//# sourceMappingURL=KalturaCuePoint.js.map