. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ abstract class Kaltura_Client_Type_MatchCondition extends Kaltura_Client_Type_Condition { public function getKalturaObjectType() { return 'KalturaMatchCondition'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; if(empty($xml->values)) $this->values = array(); else $this->values = Kaltura_Client_Client::unmarshalItem($xml->values); } /** * * * @var array of KalturaStringValue */ public $values; }