name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param ConsumerTopicMetadata[] */ public function setTopics($topics) { $this->topics = $topics; } /** * @return ConsumerTopicMetadata[] */ public function getTopics() { return $this->topics; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ConsumerGroup::class, 'Google_Service_ManagedKafka_ConsumerGroup');