. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_EntryContextDataParams extends Kaltura_Client_Type_AccessControlScope { public function getKalturaObjectType() { return 'KalturaEntryContextDataParams'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->flavorAssetId = (string)$xml->flavorAssetId; $this->flavorTags = (string)$xml->flavorTags; $this->streamerType = (string)$xml->streamerType; $this->mediaProtocol = (string)$xml->mediaProtocol; } /** * Id of the current flavor. * * * @var string */ public $flavorAssetId = null; /** * The tags of the flavors that should be used for playback. * * * @var string */ public $flavorTags = null; /** * Playback streamer type: RTMP, HTTP, appleHttps, rtsp, sl. * * * @var string */ public $streamerType = null; /** * Protocol of the specific media object. * * * @var string */ public $mediaProtocol = null; }