confidence = $confidence; } /** * @return float */ public function getConfidence() { return $this->confidence; } /** * Time offset of the end of this word relative to the beginning of the total * conversation. * * @param string $endOffset */ public function setEndOffset($endOffset) { $this->endOffset = $endOffset; } /** * @return string */ public function getEndOffset() { return $this->endOffset; } /** * Time offset of the start of this word relative to the beginning of the * total conversation. * * @param string $startOffset */ public function setStartOffset($startOffset) { $this->startOffset = $startOffset; } /** * @return string */ public function getStartOffset() { return $this->startOffset; } /** * The word itself. Includes punctuation marks that surround the word. * * @param string $word */ public function setWord($word) { $this->word = $word; } /** * @return string */ public function getWord() { return $this->word; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudContactcenterinsightsV1mainConversationTranscriptTranscriptSegmentWordInfo::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1mainConversationTranscriptTranscriptSegmentWordInfo');