. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_EntryContext extends Kaltura_Client_Type_Context { public function getKalturaObjectType() { return 'KalturaEntryContext'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->entryId = (string)$xml->entryId; } /** * The entry ID in the context of which the playlist should be built * * * @var string */ public $entryId = null; }