@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
40 lines • 2.2 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 KalturaCuePointOrderBy = (function (_super) {
__extends(KalturaCuePointOrderBy, _super);
function KalturaCuePointOrderBy(value) {
var _this = _super.call(this) || this;
_this._value = value + '';
return _this;
}
KalturaCuePointOrderBy.prototype.equals = function (obj) {
return obj && obj.toString() === this._value;
};
KalturaCuePointOrderBy.prototype.toString = function () {
return this._value;
};
KalturaCuePointOrderBy.createdAtAsc = new KalturaCuePointOrderBy('+createdAt');
KalturaCuePointOrderBy.createdAtDesc = new KalturaCuePointOrderBy('-createdAt');
KalturaCuePointOrderBy.partnerSortValueAsc = new KalturaCuePointOrderBy('+partnerSortValue');
KalturaCuePointOrderBy.partnerSortValueDesc = new KalturaCuePointOrderBy('-partnerSortValue');
KalturaCuePointOrderBy.startTimeAsc = new KalturaCuePointOrderBy('+startTime');
KalturaCuePointOrderBy.startTimeDesc = new KalturaCuePointOrderBy('-startTime');
KalturaCuePointOrderBy.triggeredAtAsc = new KalturaCuePointOrderBy('+triggeredAt');
KalturaCuePointOrderBy.triggeredAtDesc = new KalturaCuePointOrderBy('-triggeredAt');
KalturaCuePointOrderBy.updatedAtAsc = new KalturaCuePointOrderBy('+updatedAt');
KalturaCuePointOrderBy.updatedAtDesc = new KalturaCuePointOrderBy('-updatedAt');
return KalturaCuePointOrderBy;
}(KalturaObjectBase));
export { KalturaCuePointOrderBy };
KalturaTypesFactory.registerType('KalturaCuePointOrderBy', KalturaCuePointOrderBy);
//# sourceMappingURL=KalturaCuePointOrderBy.js.map