Inheritance: extends CustomCriteriaNode
 public function __construct($keyId = null, $valueIds = null, $operator = null)
 {
     parent::__construct();
     $this->keyId = $keyId;
     $this->valueIds = $valueIds;
     $this->operator = $operator;
 }
 public function __construct($keyId = NULL, $valueIds = NULL, $operator = NULL, $CustomCriteriaNodeType = NULL)
 {
     parent::__construct();
     $this->keyId = $keyId;
     $this->valueIds = $valueIds;
     $this->operator = $operator;
     $this->CustomCriteriaNodeType = $CustomCriteriaNodeType;
 }