. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_IntegerValue extends Kaltura_Client_Type_Value { public function getKalturaObjectType() { return 'KalturaIntegerValue'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; if(count($xml->value)) $this->value = (int)$xml->value; } /** * * * @var int */ public $value = null; }