@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
42 lines • 2.65 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 { KalturaObjectBase } from '../kaltura-object-base';
import { KalturaTypesFactory } from '../kaltura-types-factory';
var KalturaEntryScheduleEventOrderBy = (function (_super) {
__extends(KalturaEntryScheduleEventOrderBy, _super);
function KalturaEntryScheduleEventOrderBy(value) {
var _this = _super.call(this) || this;
_this._value = value + '';
return _this;
}
KalturaEntryScheduleEventOrderBy.prototype.equals = function (obj) {
return obj && obj.toString() === this._value;
};
KalturaEntryScheduleEventOrderBy.prototype.toString = function () {
return this._value;
};
KalturaEntryScheduleEventOrderBy.createdAtAsc = new KalturaEntryScheduleEventOrderBy('+createdAt');
KalturaEntryScheduleEventOrderBy.createdAtDesc = new KalturaEntryScheduleEventOrderBy('-createdAt');
KalturaEntryScheduleEventOrderBy.endDateAsc = new KalturaEntryScheduleEventOrderBy('+endDate');
KalturaEntryScheduleEventOrderBy.endDateDesc = new KalturaEntryScheduleEventOrderBy('-endDate');
KalturaEntryScheduleEventOrderBy.priorityAsc = new KalturaEntryScheduleEventOrderBy('+priority');
KalturaEntryScheduleEventOrderBy.priorityDesc = new KalturaEntryScheduleEventOrderBy('-priority');
KalturaEntryScheduleEventOrderBy.startDateAsc = new KalturaEntryScheduleEventOrderBy('+startDate');
KalturaEntryScheduleEventOrderBy.startDateDesc = new KalturaEntryScheduleEventOrderBy('-startDate');
KalturaEntryScheduleEventOrderBy.summaryAsc = new KalturaEntryScheduleEventOrderBy('+summary');
KalturaEntryScheduleEventOrderBy.summaryDesc = new KalturaEntryScheduleEventOrderBy('-summary');
KalturaEntryScheduleEventOrderBy.updatedAtAsc = new KalturaEntryScheduleEventOrderBy('+updatedAt');
KalturaEntryScheduleEventOrderBy.updatedAtDesc = new KalturaEntryScheduleEventOrderBy('-updatedAt');
return KalturaEntryScheduleEventOrderBy;
}(KalturaObjectBase));
export { KalturaEntryScheduleEventOrderBy };
KalturaTypesFactory.registerType('KalturaEntryScheduleEventOrderBy', KalturaEntryScheduleEventOrderBy);
//# sourceMappingURL=KalturaEntryScheduleEventOrderBy.js.map