<?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\DiscoveryEngine;
class GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec extends \Google\Model
{
/**
* Disable query rephraser.
*
* @var bool
*/
public $disable;
/**
* Max rephrase steps. The max number is 5 steps. If not set or set to < 1, it
* will be set to 1 by default.
*
* @var int
*/
public $maxRephraseSteps;
protected $modelSpecType = GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpecModelSpec::class;
protected $modelSpecDataType = '';
/**
* Disable query rephraser.
*
* @param bool $disable
*/
public function setDisable($disable)
{
$this->disable = $disable;
}
/**
* @return bool
*/
public function getDisable()
{
return $this->disable;
}
/**
* Max rephrase steps. The max number is 5 steps. If not set or set to < 1, it
* will be set to 1 by default.
*
* @param int $maxRephraseSteps
*/
public function setMaxRephraseSteps($maxRephraseSteps)
{
$this->maxRephraseSteps = $maxRephraseSteps;
}
/**
* @return int
*/
public function getMaxRephraseSteps()
{
return $this->maxRephraseSteps;
}
/**
* Optional. Query Rephraser Model specification.
*
* @param GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpecModelSpec $modelSpec
*/
public function setModelSpec(GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpecModelSpec $modelSpec)
{
$this->modelSpec = $modelSpec;
}
/**
* @return GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpecModelSpec
*/
public function getModelSpec()
{
return $this->modelSpec;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec');