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\Plugin\Audit\Enum;
34
35/**
36 * @package Kaltura
37 * @subpackage Client
38 */
39class AuditTrailObjectType extends \Kaltura\Client\EnumBase
40{
41	const BATCH_JOB = "BatchJob";
42	const EMAIL_INGESTION_PROFILE = "EmailIngestionProfile";
43	const FILE_SYNC = "FileSync";
44	const KSHOW_KUSER = "KshowKuser";
45	const METADATA = "Metadata";
46	const METADATA_PROFILE = "MetadataProfile";
47	const PARTNER = "Partner";
48	const PERMISSION = "Permission";
49	const UPLOAD_TOKEN = "UploadToken";
50	const USER_LOGIN_DATA = "UserLoginData";
51	const USER_ROLE = "UserRole";
52	const ACCESS_CONTROL = "accessControl";
53	const CATEGORY = "category";
54	const CONVERSION_PROFILE_2 = "conversionProfile2";
55	const ENTRY = "entry";
56	const FLAVOR_ASSET = "flavorAsset";
57	const FLAVOR_PARAMS = "flavorParams";
58	const FLAVOR_PARAMS_CONVERSION_PROFILE = "flavorParamsConversionProfile";
59	const FLAVOR_PARAMS_OUTPUT = "flavorParamsOutput";
60	const KSHOW = "kshow";
61	const KUSER = "kuser";
62	const MEDIA_INFO = "mediaInfo";
63	const MODERATION = "moderation";
64	const ROUGHCUT = "roughcutEntry";
65	const SYNDICATION = "syndicationFeed";
66	const THUMBNAIL_ASSET = "thumbAsset";
67	const THUMBNAIL_PARAMS = "thumbParams";
68	const THUMBNAIL_PARAMS_OUTPUT = "thumbParamsOutput";
69	const UI_CONF = "uiConf";
70	const WIDGET = "widget";
71}
72
73