currentState = $currentState; } /** * @return string */ public function getCurrentState() { return $this->currentState; } /** * @param string */ public function setDeadLetterTopic($deadLetterTopic) { $this->deadLetterTopic = $deadLetterTopic; } /** * @return string */ public function getDeadLetterTopic() { return $this->deadLetterTopic; } /** * @param string */ public function setDesiredState($desiredState) { $this->desiredState = $desiredState; } /** * @return string */ public function getDesiredState() { return $this->desiredState; } /** * @param PubSubConfig */ public function setPubsubConfig(PubSubConfig $pubsubConfig) { $this->pubsubConfig = $pubsubConfig; } /** * @return PubSubConfig */ public function getPubsubConfig() { return $this->pubsubConfig; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ExportConfig::class, 'Google_Service_PubsubLite_ExportConfig');