codeChunk = $codeChunk; } /** * @return CodeChunk */ public function getCodeChunk() { return $this->codeChunk; } /** * Optional. A chunk of text. * * @param TextChunk $textChunk */ public function setTextChunk(TextChunk $textChunk) { $this->textChunk = $textChunk; } /** * @return TextChunk */ public function getTextChunk() { return $this->textChunk; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Part::class, 'Google_Service_FirebaseDataConnect_Part');