@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
26 lines (25 loc) • 1.17 kB
TypeScript
import { KalturaObjectBase } from '../kaltura-object-base';
export declare class KalturaBatchJobOrderBy extends KalturaObjectBase {
private _value;
constructor(value?: string | number);
equals(obj: this): boolean;
toString(): string;
static createdAtAsc: KalturaBatchJobOrderBy;
static createdAtDesc: KalturaBatchJobOrderBy;
static estimatedEffortAsc: KalturaBatchJobOrderBy;
static estimatedEffortDesc: KalturaBatchJobOrderBy;
static executionAttemptsAsc: KalturaBatchJobOrderBy;
static executionAttemptsDesc: KalturaBatchJobOrderBy;
static finishTimeAsc: KalturaBatchJobOrderBy;
static finishTimeDesc: KalturaBatchJobOrderBy;
static lockVersionAsc: KalturaBatchJobOrderBy;
static lockVersionDesc: KalturaBatchJobOrderBy;
static priorityAsc: KalturaBatchJobOrderBy;
static priorityDesc: KalturaBatchJobOrderBy;
static queueTimeAsc: KalturaBatchJobOrderBy;
static queueTimeDesc: KalturaBatchJobOrderBy;
static statusAsc: KalturaBatchJobOrderBy;
static statusDesc: KalturaBatchJobOrderBy;
static updatedAtAsc: KalturaBatchJobOrderBy;
static updatedAtDesc: KalturaBatchJobOrderBy;
}