. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_BooleanValue extends Kaltura_Client_Type_Value { public function getKalturaObjectType() { return 'KalturaBooleanValue'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; if(!empty($xml->value)) $this->value = true; } /** * * * @var bool */ public $value = null; }