@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
39 lines • 2.38 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 { KalturaEntryDistributionSunStatus } from './KalturaEntryDistributionSunStatus';
import { KalturaEntryDistributionFlag } from './KalturaEntryDistributionFlag';
import { KalturaEntryDistributionStatus } from './KalturaEntryDistributionStatus';
import { KalturaSearchItem } from './KalturaSearchItem';
var KalturaContentDistributionSearchItem = (function (_super) {
__extends(KalturaContentDistributionSearchItem, _super);
function KalturaContentDistributionSearchItem(data) {
return _super.call(this, data) || this;
}
KalturaContentDistributionSearchItem.prototype._getMetadata = function () {
var result = _super.prototype._getMetadata.call(this);
Object.assign(result.properties, {
objectType: { type: 'c', default: 'KalturaContentDistributionSearchItem' },
noDistributionProfiles: { type: 'b' },
distributionProfileId: { type: 'n' },
distributionSunStatus: { type: 'en', subTypeConstructor: KalturaEntryDistributionSunStatus, subType: 'KalturaEntryDistributionSunStatus' },
entryDistributionFlag: { type: 'en', subTypeConstructor: KalturaEntryDistributionFlag, subType: 'KalturaEntryDistributionFlag' },
entryDistributionStatus: { type: 'en', subTypeConstructor: KalturaEntryDistributionStatus, subType: 'KalturaEntryDistributionStatus' },
hasEntryDistributionValidationErrors: { type: 'b' },
entryDistributionValidationErrors: { type: 's' }
});
return result;
};
return KalturaContentDistributionSearchItem;
}(KalturaSearchItem));
export { KalturaContentDistributionSearchItem };
KalturaTypesFactory.registerType('KalturaContentDistributionSearchItem', KalturaContentDistributionSearchItem);
//# sourceMappingURL=KalturaContentDistributionSearchItem.js.map