. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_EvalStringField extends Kaltura_Client_Type_StringField { public function getKalturaObjectType() { return 'KalturaEvalStringField'; } 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; }