83 lines
2.6 KiB
PHP
83 lines
2.6 KiB
PHP
<?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 GoogleCloudContactcenterinsightsV1mainQaAnswerAnswerSource extends \Google\Model
|
|
{
|
|
/**
|
|
* Source type is unspecified.
|
|
*/
|
|
public const SOURCE_TYPE_SOURCE_TYPE_UNSPECIFIED = 'SOURCE_TYPE_UNSPECIFIED';
|
|
/**
|
|
* Answer was system-generated; created during an Insights analysis.
|
|
*/
|
|
public const SOURCE_TYPE_SYSTEM_GENERATED = 'SYSTEM_GENERATED';
|
|
/**
|
|
* Answer was created by a human via manual edit.
|
|
*/
|
|
public const SOURCE_TYPE_MANUAL_EDIT = 'MANUAL_EDIT';
|
|
protected $answerValueType = GoogleCloudContactcenterinsightsV1mainQaAnswerAnswerValue::class;
|
|
protected $answerValueDataType = '';
|
|
/**
|
|
* What created the answer.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $sourceType;
|
|
|
|
/**
|
|
* 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 GoogleCloudContactcenterinsightsV1mainQaAnswerAnswerValue $answerValue
|
|
*/
|
|
public function setAnswerValue(GoogleCloudContactcenterinsightsV1mainQaAnswerAnswerValue $answerValue)
|
|
{
|
|
$this->answerValue = $answerValue;
|
|
}
|
|
/**
|
|
* @return GoogleCloudContactcenterinsightsV1mainQaAnswerAnswerValue
|
|
*/
|
|
public function getAnswerValue()
|
|
{
|
|
return $this->answerValue;
|
|
}
|
|
/**
|
|
* What created the answer.
|
|
*
|
|
* Accepted values: SOURCE_TYPE_UNSPECIFIED, SYSTEM_GENERATED, MANUAL_EDIT
|
|
*
|
|
* @param self::SOURCE_TYPE_* $sourceType
|
|
*/
|
|
public function setSourceType($sourceType)
|
|
{
|
|
$this->sourceType = $sourceType;
|
|
}
|
|
/**
|
|
* @return self::SOURCE_TYPE_*
|
|
*/
|
|
public function getSourceType()
|
|
{
|
|
return $this->sourceType;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(GoogleCloudContactcenterinsightsV1mainQaAnswerAnswerSource::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1mainQaAnswerAnswerSource');
|