allowPlaybackInterruption = $allowPlaybackInterruption; } /** * @return bool */ public function getAllowPlaybackInterruption() { return $this->allowPlaybackInterruption; } /** * Required. A collection of text response variants. If multiple variants are * defined, only one text response variant is returned at runtime. * * @param string[] $text */ 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(GoogleCloudDialogflowCxV3beta1ResponseMessageText::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3beta1ResponseMessageText');