indexable = $indexable; } /** * @return bool */ public function getIndexable() { return $this->indexable; } public function setNumbers($numbers) { $this->numbers = $numbers; } public function getNumbers() { return $this->numbers; } /** * @param bool */ public function setSearchable($searchable) { $this->searchable = $searchable; } /** * @return bool */ public function getSearchable() { return $this->searchable; } /** * @param string[] */ public function setText($text) { $this->text = $text; } /** * @return string[] */ public function getText() { return $this->text; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudRetailV2CustomAttribute::class, 'Google_Service_CloudRetail_GoogleCloudRetailV2CustomAttribute');