@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
16 lines (15 loc) • 611 B
TypeScript
import { KalturaObjectBase } from '../kaltura-object-base';
export declare class KalturaAssetOrderBy extends KalturaObjectBase {
private _value;
constructor(value?: string | number);
equals(obj: this): boolean;
toString(): string;
static createdAtAsc: KalturaAssetOrderBy;
static createdAtDesc: KalturaAssetOrderBy;
static deletedAtAsc: KalturaAssetOrderBy;
static deletedAtDesc: KalturaAssetOrderBy;
static sizeAsc: KalturaAssetOrderBy;
static sizeDesc: KalturaAssetOrderBy;
static updatedAtAsc: KalturaAssetOrderBy;
static updatedAtDesc: KalturaAssetOrderBy;
}