. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_DropFolder_Enum_DropFolderFileOrderBy { const CREATED_AT_ASC = "+createdAt"; const FILE_NAME_ASC = "+fileName"; const FILE_SIZE_ASC = "+fileSize"; const FILE_SIZE_LAST_SET_AT_ASC = "+fileSizeLastSetAt"; const ID_ASC = "+id"; const PARSED_FLAVOR_ASC = "+parsedFlavor"; const PARSED_SLUG_ASC = "+parsedSlug"; const UPDATED_AT_ASC = "+updatedAt"; const CREATED_AT_DESC = "-createdAt"; const FILE_NAME_DESC = "-fileName"; const FILE_SIZE_DESC = "-fileSize"; const FILE_SIZE_LAST_SET_AT_DESC = "-fileSizeLastSetAt"; const ID_DESC = "-id"; const PARSED_FLAVOR_DESC = "-parsedFlavor"; const PARSED_SLUG_DESC = "-parsedSlug"; const UPDATED_AT_DESC = "-updatedAt"; }