| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <?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 GoogleCloudContactcenterinsightsV1alpha1QaAnswer extends \Google\Collection
- {
- protected $collection_key = 'tags';
- protected $answerSourcesType = GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerSource::class;
- protected $answerSourcesDataType = 'array';
- protected $answerValueType = GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue::class;
- protected $answerValueDataType = '';
- /**
- * The conversation the answer applies to.
- *
- * @var string
- */
- public $conversation;
- /**
- * The QaQuestion answered by this answer.
- *
- * @var string
- */
- public $qaQuestion;
- /**
- * Question text. E.g., "Did the agent greet the customer?"
- *
- * @var string
- */
- public $questionBody;
- /**
- * User-defined list of arbitrary tags. Matches the value from
- * QaScorecard.ScorecardQuestion.tags. Used for grouping/organization and for
- * weighting the score of each answer.
- *
- * @var string[]
- */
- public $tags;
- /**
- * Lists all answer sources containing one or more answer values of a specific
- * source type, e.g., all system-generated answer sources, or all manual edit
- * answer sources.
- *
- * @param GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerSource[] $answerSources
- */
- public function setAnswerSources($answerSources)
- {
- $this->answerSources = $answerSources;
- }
- /**
- * @return GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerSource[]
- */
- public function getAnswerSources()
- {
- return $this->answerSources;
- }
- /**
- * The answer value from this source. This field is populated by default,
- * unless the question has a selection strategy configured to return multiple
- * answer values, in which case `answer_values` will be populated instead.
- *
- * @param GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue $answerValue
- */
- public function setAnswerValue(GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue $answerValue)
- {
- $this->answerValue = $answerValue;
- }
- /**
- * @return GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue
- */
- public function getAnswerValue()
- {
- return $this->answerValue;
- }
- /**
- * The conversation the answer applies to.
- *
- * @param string $conversation
- */
- public function setConversation($conversation)
- {
- $this->conversation = $conversation;
- }
- /**
- * @return string
- */
- public function getConversation()
- {
- return $this->conversation;
- }
- /**
- * The QaQuestion answered by this answer.
- *
- * @param string $qaQuestion
- */
- public function setQaQuestion($qaQuestion)
- {
- $this->qaQuestion = $qaQuestion;
- }
- /**
- * @return string
- */
- public function getQaQuestion()
- {
- return $this->qaQuestion;
- }
- /**
- * Question text. E.g., "Did the agent greet the customer?"
- *
- * @param string $questionBody
- */
- public function setQuestionBody($questionBody)
- {
- $this->questionBody = $questionBody;
- }
- /**
- * @return string
- */
- public function getQuestionBody()
- {
- return $this->questionBody;
- }
- /**
- * User-defined list of arbitrary tags. Matches the value from
- * QaScorecard.ScorecardQuestion.tags. Used for grouping/organization and for
- * weighting the score of each answer.
- *
- * @param string[] $tags
- */
- public function setTags($tags)
- {
- $this->tags = $tags;
- }
- /**
- * @return string[]
- */
- public function getTags()
- {
- return $this->tags;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(GoogleCloudContactcenterinsightsV1alpha1QaAnswer::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1alpha1QaAnswer');
|