. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_CuePoint_Enum_CuePointOrderBy { const CREATED_AT_ASC = "+createdAt"; const PARTNER_SORT_VALUE_ASC = "+partnerSortValue"; const START_TIME_ASC = "+startTime"; const UPDATED_AT_ASC = "+updatedAt"; const CREATED_AT_DESC = "-createdAt"; const PARTNER_SORT_VALUE_DESC = "-partnerSortValue"; const START_TIME_DESC = "-startTime"; const UPDATED_AT_DESC = "-updatedAt"; }