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