@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
47 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 { KalturaScheduleEventRecurrenceFrequency } from './KalturaScheduleEventRecurrenceFrequency';
import { KalturaScheduleEventRecurrenceDay } from './KalturaScheduleEventRecurrenceDay';
import { KalturaObjectBase } from '../kaltura-object-base';
var KalturaScheduleEventRecurrence = (function (_super) {
__extends(KalturaScheduleEventRecurrence, _super);
function KalturaScheduleEventRecurrence(data) {
return _super.call(this, data) || this;
}
KalturaScheduleEventRecurrence.prototype._getMetadata = function () {
var result = _super.prototype._getMetadata.call(this);
Object.assign(result.properties, {
objectType: { type: 'c', default: 'KalturaScheduleEventRecurrence' },
name: { type: 's' },
frequency: { type: 'es', subTypeConstructor: KalturaScheduleEventRecurrenceFrequency, subType: 'KalturaScheduleEventRecurrenceFrequency' },
until: { type: 'd' },
timeZone: { type: 's' },
count: { type: 'n' },
interval: { type: 'n' },
bySecond: { type: 's' },
byMinute: { type: 's' },
byHour: { type: 's' },
byDay: { type: 's' },
byMonthDay: { type: 's' },
byYearDay: { type: 's' },
byWeekNumber: { type: 's' },
byMonth: { type: 's' },
byOffset: { type: 's' },
weekStartDay: { type: 'es', subTypeConstructor: KalturaScheduleEventRecurrenceDay, subType: 'KalturaScheduleEventRecurrenceDay' }
});
return result;
};
return KalturaScheduleEventRecurrence;
}(KalturaObjectBase));
export { KalturaScheduleEventRecurrence };
KalturaTypesFactory.registerType('KalturaScheduleEventRecurrence', KalturaScheduleEventRecurrence);
//# sourceMappingURL=KalturaScheduleEventRecurrence.js.map