@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
54 lines • 2.9 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 { KalturaSyndicationFeedStatus } from './KalturaSyndicationFeedStatus';
import { KalturaSyndicationFeedType } from './KalturaSyndicationFeedType';
import { KalturaSyndicationFeedEntriesOrderBy } from './KalturaSyndicationFeedEntriesOrderBy';
import { KalturaObjectBase } from '../kaltura-object-base';
var KalturaBaseSyndicationFeed = (function (_super) {
__extends(KalturaBaseSyndicationFeed, _super);
function KalturaBaseSyndicationFeed(data) {
return _super.call(this, data) || this;
}
KalturaBaseSyndicationFeed.prototype._getMetadata = function () {
var result = _super.prototype._getMetadata.call(this);
Object.assign(result.properties, {
objectType: { type: 'c', default: 'KalturaBaseSyndicationFeed' },
id: { type: 's', readOnly: true },
feedUrl: { type: 's', readOnly: true },
partnerId: { type: 'n', readOnly: true },
playlistId: { type: 's' },
name: { type: 's' },
status: { type: 'en', readOnly: true, subTypeConstructor: KalturaSyndicationFeedStatus, subType: 'KalturaSyndicationFeedStatus' },
type: { type: 'en', subTypeConstructor: KalturaSyndicationFeedType, subType: 'KalturaSyndicationFeedType' },
landingPage: { type: 's' },
createdAt: { type: 'd', readOnly: true },
allowEmbed: { type: 'b' },
playerUiconfId: { type: 'n' },
flavorParamId: { type: 'n' },
transcodeExistingContent: { type: 'b' },
addToDefaultConversionProfile: { type: 'b' },
categories: { type: 's' },
storageId: { type: 'n' },
entriesOrderBy: { type: 'es', subTypeConstructor: KalturaSyndicationFeedEntriesOrderBy, subType: 'KalturaSyndicationFeedEntriesOrderBy' },
enforceEntitlement: { type: 'b' },
privacyContext: { type: 's' },
updatedAt: { type: 'd', readOnly: true },
useCategoryEntries: { type: 'b' },
feedContentTypeHeader: { type: 's' }
});
return result;
};
return KalturaBaseSyndicationFeed;
}(KalturaObjectBase));
export { KalturaBaseSyndicationFeed };
KalturaTypesFactory.registerType('KalturaBaseSyndicationFeed', KalturaBaseSyndicationFeed);
//# sourceMappingURL=KalturaBaseSyndicationFeed.js.map