UNPKG

@kaltura-ng/kaltura-client

Version:
48 lines 2.89 kB
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 KalturaBatchJobOrderBy = (function (_super) { __extends(KalturaBatchJobOrderBy, _super); function KalturaBatchJobOrderBy(value) { var _this = _super.call(this) || this; _this._value = value + ''; return _this; } KalturaBatchJobOrderBy.prototype.equals = function (obj) { return obj && obj.toString() === this._value; }; KalturaBatchJobOrderBy.prototype.toString = function () { return this._value; }; KalturaBatchJobOrderBy.createdAtAsc = new KalturaBatchJobOrderBy('+createdAt'); KalturaBatchJobOrderBy.createdAtDesc = new KalturaBatchJobOrderBy('-createdAt'); KalturaBatchJobOrderBy.estimatedEffortAsc = new KalturaBatchJobOrderBy('+estimatedEffort'); KalturaBatchJobOrderBy.estimatedEffortDesc = new KalturaBatchJobOrderBy('-estimatedEffort'); KalturaBatchJobOrderBy.executionAttemptsAsc = new KalturaBatchJobOrderBy('+executionAttempts'); KalturaBatchJobOrderBy.executionAttemptsDesc = new KalturaBatchJobOrderBy('-executionAttempts'); KalturaBatchJobOrderBy.finishTimeAsc = new KalturaBatchJobOrderBy('+finishTime'); KalturaBatchJobOrderBy.finishTimeDesc = new KalturaBatchJobOrderBy('-finishTime'); KalturaBatchJobOrderBy.lockVersionAsc = new KalturaBatchJobOrderBy('+lockVersion'); KalturaBatchJobOrderBy.lockVersionDesc = new KalturaBatchJobOrderBy('-lockVersion'); KalturaBatchJobOrderBy.priorityAsc = new KalturaBatchJobOrderBy('+priority'); KalturaBatchJobOrderBy.priorityDesc = new KalturaBatchJobOrderBy('-priority'); KalturaBatchJobOrderBy.queueTimeAsc = new KalturaBatchJobOrderBy('+queueTime'); KalturaBatchJobOrderBy.queueTimeDesc = new KalturaBatchJobOrderBy('-queueTime'); KalturaBatchJobOrderBy.statusAsc = new KalturaBatchJobOrderBy('+status'); KalturaBatchJobOrderBy.statusDesc = new KalturaBatchJobOrderBy('-status'); KalturaBatchJobOrderBy.updatedAtAsc = new KalturaBatchJobOrderBy('+updatedAt'); KalturaBatchJobOrderBy.updatedAtDesc = new KalturaBatchJobOrderBy('-updatedAt'); return KalturaBatchJobOrderBy; }(KalturaObjectBase)); export { KalturaBatchJobOrderBy }; KalturaTypesFactory.registerType('KalturaBatchJobOrderBy', KalturaBatchJobOrderBy); //# sourceMappingURL=KalturaBatchJobOrderBy.js.map