databaseId = $databaseId; } /** * @return string */ public function getDatabaseId() { return $this->databaseId; } /** * @param Key[] */ public function setKeys($keys) { $this->keys = $keys; } /** * @return Key[] */ public function getKeys() { return $this->keys; } /** * @param PropertyMask */ public function setPropertyMask(PropertyMask $propertyMask) { $this->propertyMask = $propertyMask; } /** * @return PropertyMask */ public function getPropertyMask() { return $this->propertyMask; } /** * @param ReadOptions */ public function setReadOptions(ReadOptions $readOptions) { $this->readOptions = $readOptions; } /** * @return ReadOptions */ public function getReadOptions() { return $this->readOptions; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LookupRequest::class, 'Google_Service_Datastore_LookupRequest');