. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_EvalBooleanField extends Kaltura_Client_Type_BooleanField { public function getKalturaObjectType() { return 'KalturaEvalBooleanField'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->code = (string)$xml->code; } /** * PHP code * * * @var string */ public $code = null; }