. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Enum_BaseSyndicationFeedOrderBy { const CREATED_AT_ASC = "+createdAt"; const NAME_ASC = "+name"; const PLAYLIST_ID_ASC = "+playlistId"; const TYPE_ASC = "+type"; const UPDATED_AT_ASC = "+updatedAt"; const CREATED_AT_DESC = "-createdAt"; const NAME_DESC = "-name"; const PLAYLIST_ID_DESC = "-playlistId"; const TYPE_DESC = "-type"; const UPDATED_AT_DESC = "-updatedAt"; }