cursor = $cursor; } /** * @return string */ public function getCursor() { return $this->cursor; } /** * @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(GqlQueryParameter::class, 'Google_Service_Datastore_GqlQueryParameter');