easyappointments/vendor/google/apiclient-services/src/Dialogflow/GoogleCloudDialogflowCxV3In...

168 lines
3.3 KiB
PHP
Executable File

<?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\Dialogflow;
class GoogleCloudDialogflowCxV3Intent extends \Google\Collection
{
protected $collection_key = 'trainingPhrases';
/**
* @var string
*/
public $description;
/**
* @var string
*/
public $displayName;
/**
* @var bool
*/
public $isFallback;
/**
* @var string[]
*/
public $labels;
/**
* @var string
*/
public $name;
protected $parametersType = GoogleCloudDialogflowCxV3IntentParameter::class;
protected $parametersDataType = 'array';
/**
* @var int
*/
public $priority;
protected $trainingPhrasesType = GoogleCloudDialogflowCxV3IntentTrainingPhrase::class;
protected $trainingPhrasesDataType = 'array';
/**
* @param string
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* @param string
*/
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
/**
* @return string
*/
public function getDisplayName()
{
return $this->displayName;
}
/**
* @param bool
*/
public function setIsFallback($isFallback)
{
$this->isFallback = $isFallback;
}
/**
* @return bool
*/
public function getIsFallback()
{
return $this->isFallback;
}
/**
* @param string[]
*/
public function setLabels($labels)
{
$this->labels = $labels;
}
/**
* @return string[]
*/
public function getLabels()
{
return $this->labels;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param GoogleCloudDialogflowCxV3IntentParameter[]
*/
public function setParameters($parameters)
{
$this->parameters = $parameters;
}
/**
* @return GoogleCloudDialogflowCxV3IntentParameter[]
*/
public function getParameters()
{
return $this->parameters;
}
/**
* @param int
*/
public function setPriority($priority)
{
$this->priority = $priority;
}
/**
* @return int
*/
public function getPriority()
{
return $this->priority;
}
/**
* @param GoogleCloudDialogflowCxV3IntentTrainingPhrase[]
*/
public function setTrainingPhrases($trainingPhrases)
{
$this->trainingPhrases = $trainingPhrases;
}
/**
* @return GoogleCloudDialogflowCxV3IntentTrainingPhrase[]
*/
public function getTrainingPhrases()
{
return $this->trainingPhrases;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDialogflowCxV3Intent::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3Intent');