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