. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_AssetPropertiesCompareCondition extends Kaltura_Client_Type_Condition { public function getKalturaObjectType() { return 'KalturaAssetPropertiesCompareCondition'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; if(empty($xml->properties)) $this->properties = array(); else $this->properties = Kaltura_Client_Client::unmarshalItem($xml->properties); } /** * Array of key/value objects that holds the property and the value to find and compare on an asset object * * * @var array of KalturaKeyValue */ public $properties; }