| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <?php
- /*
- * Copyright 2014 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
- namespace Google\Service\Contactcenterinsights;
- class GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegment extends \Google\Collection
- {
- protected $collection_key = 'words';
- /**
- * For conversations derived from multi-channel audio, this is the channel
- * number corresponding to the audio from that channel. For audioChannelCount
- * = N, its output values can range from '1' to 'N'. A channel tag of 0
- * indicates that the audio is mono.
- *
- * @var int
- */
- public $channelTag;
- /**
- * A confidence estimate between 0.0 and 1.0 of the fidelity of this segment.
- * A default value of 0.0 indicates that the value is unset.
- *
- * @var float
- */
- public $confidence;
- protected $dialogflowSegmentMetadataType = GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentDialogflowSegmentMetadata::class;
- protected $dialogflowSegmentMetadataDataType = '';
- /**
- * The language code of this segment as a [BCP-47](https://www.rfc-
- * editor.org/rfc/bcp/bcp47.txt) language tag. Example: "en-US".
- *
- * @var string
- */
- public $languageCode;
- /**
- * The time that the message occurred, if provided.
- *
- * @var string
- */
- public $messageTime;
- protected $segmentParticipantType = GoogleCloudContactcenterinsightsV1ConversationParticipant::class;
- protected $segmentParticipantDataType = '';
- protected $sentimentType = GoogleCloudContactcenterinsightsV1SentimentData::class;
- protected $sentimentDataType = '';
- /**
- * The text of this segment.
- *
- * @var string
- */
- public $text;
- protected $wordsType = GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo::class;
- protected $wordsDataType = 'array';
- /**
- * For conversations derived from multi-channel audio, this is the channel
- * number corresponding to the audio from that channel. For audioChannelCount
- * = N, its output values can range from '1' to 'N'. A channel tag of 0
- * indicates that the audio is mono.
- *
- * @param int $channelTag
- */
- public function setChannelTag($channelTag)
- {
- $this->channelTag = $channelTag;
- }
- /**
- * @return int
- */
- public function getChannelTag()
- {
- return $this->channelTag;
- }
- /**
- * A confidence estimate between 0.0 and 1.0 of the fidelity of this segment.
- * A default value of 0.0 indicates that the value is unset.
- *
- * @param float $confidence
- */
- public function setConfidence($confidence)
- {
- $this->confidence = $confidence;
- }
- /**
- * @return float
- */
- public function getConfidence()
- {
- return $this->confidence;
- }
- /**
- * CCAI metadata relating to the current transcript segment.
- *
- * @param GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentDialogflowSegmentMetadata $dialogflowSegmentMetadata
- */
- public function setDialogflowSegmentMetadata(GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentDialogflowSegmentMetadata $dialogflowSegmentMetadata)
- {
- $this->dialogflowSegmentMetadata = $dialogflowSegmentMetadata;
- }
- /**
- * @return GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentDialogflowSegmentMetadata
- */
- public function getDialogflowSegmentMetadata()
- {
- return $this->dialogflowSegmentMetadata;
- }
- /**
- * The language code of this segment as a [BCP-47](https://www.rfc-
- * editor.org/rfc/bcp/bcp47.txt) language tag. Example: "en-US".
- *
- * @param string $languageCode
- */
- public function setLanguageCode($languageCode)
- {
- $this->languageCode = $languageCode;
- }
- /**
- * @return string
- */
- public function getLanguageCode()
- {
- return $this->languageCode;
- }
- /**
- * The time that the message occurred, if provided.
- *
- * @param string $messageTime
- */
- public function setMessageTime($messageTime)
- {
- $this->messageTime = $messageTime;
- }
- /**
- * @return string
- */
- public function getMessageTime()
- {
- return $this->messageTime;
- }
- /**
- * The participant of this segment.
- *
- * @param GoogleCloudContactcenterinsightsV1ConversationParticipant $segmentParticipant
- */
- public function setSegmentParticipant(GoogleCloudContactcenterinsightsV1ConversationParticipant $segmentParticipant)
- {
- $this->segmentParticipant = $segmentParticipant;
- }
- /**
- * @return GoogleCloudContactcenterinsightsV1ConversationParticipant
- */
- public function getSegmentParticipant()
- {
- return $this->segmentParticipant;
- }
- /**
- * The sentiment for this transcript segment.
- *
- * @param GoogleCloudContactcenterinsightsV1SentimentData $sentiment
- */
- public function setSentiment(GoogleCloudContactcenterinsightsV1SentimentData $sentiment)
- {
- $this->sentiment = $sentiment;
- }
- /**
- * @return GoogleCloudContactcenterinsightsV1SentimentData
- */
- public function getSentiment()
- {
- return $this->sentiment;
- }
- /**
- * The text of this segment.
- *
- * @param string $text
- */
- public function setText($text)
- {
- $this->text = $text;
- }
- /**
- * @return string
- */
- public function getText()
- {
- return $this->text;
- }
- /**
- * A list of the word-specific information for each word in the segment.
- *
- * @param GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo[] $words
- */
- public function setWords($words)
- {
- $this->words = $words;
- }
- /**
- * @return GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo[]
- */
- public function getWords()
- {
- return $this->words;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegment::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegment');
|