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