. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_PlayerEmbedCodeType extends Kaltura_Client_ObjectBase { public function getKalturaObjectType() { return 'KalturaPlayerEmbedCodeType'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->id = (string)$xml->id; $this->label = (string)$xml->label; if(!empty($xml->entryOnly)) $this->entryOnly = true; $this->minVersion = (string)$xml->minVersion; } /** * * * @var string */ public $id = null; /** * * * @var string */ public $label = null; /** * * * @var bool */ public $entryOnly = null; /** * * * @var string */ public $minVersion = null; }