field = $field; } /** * @return FieldReference */ public function getField() { return $this->field; } /** * @param string */ public function setOp($op) { $this->op = $op; } /** * @return string */ public function getOp() { return $this->op; } /** * @param Value */ public function setValue(Value $value) { $this->value = $value; } /** * @return Value */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FieldFilter::class, 'Google_Service_Firestore_FieldFilter');