1<?php
2// ===================================================================================================
3//                           _  __     _ _
4//                          | |/ /__ _| | |_ _  _ _ _ __ _
5//                          | ' </ _` | |  _| || | '_/ _` |
6//                          |_|\_\__,_|_|\__|\_,_|_| \__,_|
7//
8// This file is part of the Kaltura Collaborative Media Suite which allows users
9// to do with audio, video, and animation what Wiki platfroms allow them to do with
10// text.
11//
12// Copyright (C) 2006-2017  Kaltura Inc.
13//
14// This program is free software: you can redistribute it and/or modify
15// it under the terms of the GNU Affero General Public License as
16// published by the Free Software Foundation, either version 3 of the
17// License, or (at your option) any later version.
18//
19// This program is distributed in the hope that it will be useful,
20// but WITHOUT ANY WARRANTY; without even the implied warranty of
21// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22// GNU Affero General Public License for more details.
23//
24// You should have received a copy of the GNU Affero General Public License
25// along with this program.  If not, see <http://www.gnu.org/licenses/>.
26//
27// @ignore
28// ===================================================================================================
29
30/**
31 * @namespace
32 */
33namespace Kaltura\Client\Enum;
34
35/**
36 * @package Kaltura
37 * @subpackage Client
38 */
39class MediaEntryOrderBy extends \Kaltura\Client\EnumBase
40{
41	const CREATED_AT_ASC = "+createdAt";
42	const DURATION_ASC = "+duration";
43	const END_DATE_ASC = "+endDate";
44	const LAST_PLAYED_AT_ASC = "+lastPlayedAt";
45	const MEDIA_TYPE_ASC = "+mediaType";
46	const MODERATION_COUNT_ASC = "+moderationCount";
47	const NAME_ASC = "+name";
48	const PARTNER_SORT_VALUE_ASC = "+partnerSortValue";
49	const PLAYS_ASC = "+plays";
50	const RANK_ASC = "+rank";
51	const RECENT_ASC = "+recent";
52	const START_DATE_ASC = "+startDate";
53	const TOTAL_RANK_ASC = "+totalRank";
54	const UPDATED_AT_ASC = "+updatedAt";
55	const VIEWS_ASC = "+views";
56	const WEIGHT_ASC = "+weight";
57	const CREATED_AT_DESC = "-createdAt";
58	const DURATION_DESC = "-duration";
59	const END_DATE_DESC = "-endDate";
60	const LAST_PLAYED_AT_DESC = "-lastPlayedAt";
61	const MEDIA_TYPE_DESC = "-mediaType";
62	const MODERATION_COUNT_DESC = "-moderationCount";
63	const NAME_DESC = "-name";
64	const PARTNER_SORT_VALUE_DESC = "-partnerSortValue";
65	const PLAYS_DESC = "-plays";
66	const RANK_DESC = "-rank";
67	const RECENT_DESC = "-recent";
68	const START_DATE_DESC = "-startDate";
69	const TOTAL_RANK_DESC = "-totalRank";
70	const UPDATED_AT_DESC = "-updatedAt";
71	const VIEWS_DESC = "-views";
72	const WEIGHT_DESC = "-weight";
73}
74
75