. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ abstract class Kaltura_Client_Type_CompareCondition extends Kaltura_Client_Type_Condition { public function getKalturaObjectType() { return 'KalturaCompareCondition'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; if(!empty($xml->value)) $this->value = Kaltura_Client_Client::unmarshalItem($xml->value); $this->comparison = (string)$xml->comparison; } /** * Value to evaluate against the field and operator * * * @var Kaltura_Client_Type_IntegerValue */ public $value; /** * Comparing operator * * * @var Kaltura_Client_Enum_SearchConditionComparison */ public $comparison = null; }