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