📄 Source: GoogleCloudDialogflowCxV3Flow.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\Dialogflow;
class GoogleCloudDialogflowCxV3Flow extends \Google\Collection
{
protected $collection_key = 'transitionRoutes';
protected $advancedSettingsType = GoogleCloudDialogflowCxV3AdvancedSettings::class;
protected $advancedSettingsDataType = '';
/**
* @var string
*/
public $description;
/**
* @var string
*/
public $displayName;
protected $eventHandlersType = GoogleCloudDialogflowCxV3EventHandler::class;
protected $eventHandlersDataType = 'array';
protected $inputParameterDefinitionsType = GoogleCloudDialogflowCxV3ParameterDefinition::class;
protected $inputParameterDefinitionsDataType = 'array';
protected $knowledgeConnectorSettingsType = GoogleCloudDialogflowCxV3KnowledgeConnectorSettings::class;
protected $knowledgeConnectorSettingsDataType = '';
/**
* @var bool
*/
public $locked;
protected $multiLanguageSettingsType = GoogleCloudDialogflowCxV3FlowMultiLanguageSettings::class;
protected $multiLanguageSettingsDataType = '';
/**
* @var string
*/
public $name;
protected $nluSettingsType = GoogleCloudDialogflowCxV3NluSettings::class;
protected $nluSettingsDataType = '';
protected $outputParameterDefinitionsType = GoogleCloudDialogflowCxV3ParameterDefinition::class;
protected $outputParameterDefinitionsDataType = 'array';
/**
* @var string[]
*/
public $transitionRouteGroups;
protected $transitionRoutesType = GoogleCloudDialogflowCxV3TransitionRoute::class;
protected $transitionRoutesDataType = 'array';
/**
* @param GoogleCloudDialogflowCxV3AdvancedSettings $advancedSettings
*/
public function setAdvancedSettings(GoogleCloudDialogflowCxV3AdvancedSettings $advancedSettings)
{
$this->advancedSettings = $advancedSettings;
}
/**
* @return GoogleCloudDialogflowCxV3AdvancedSettings
*/
public function getAdvancedSettings()
{
return $this->advancedSettings;
}
/**
* @param string $description
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* @param string $displayName
*/
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
/**
* @return string
*/
public function getDisplayName()
{
return $this->displayName;
}
/**
* @param GoogleCloudDialogflowCxV3EventHandler[] $eventHandlers
*/
public function setEventHandlers($eventHandlers)
{
$this->eventHandlers = $eventHandlers;
}
/**
* @return GoogleCloudDialogflowCxV3EventHandler[]
*/
public function getEventHandlers()
{
return $this->eventHandlers;
}
/**
* @param GoogleCloudDialogflowCxV3ParameterDefinition[] $inputParameterDefinitions
*/
public function setInputParameterDefinitions($inputParameterDefinitions)
{
$this->inputParameterDefinitions = $inputParameterDefinitions;
}
/**
* @return GoogleCloudDialogflowCxV3ParameterDefinition[]
*/
public function getInputParameterDefinitions()
{
return $this->inputParameterDefinitions;
}
/**
* @param GoogleCloudDialogflowCxV3KnowledgeConnectorSettings $knowledgeConnectorSettings
*/
public function setKnowledgeConnectorSettings(GoogleCloudDialogflowCxV3KnowledgeConnectorSettings $knowledgeConnectorSettings)
{
$this->knowledgeConnectorSettings = $knowledgeConnectorSettings;
}
/**
* @return GoogleCloudDialogflowCxV3KnowledgeConnectorSettings
*/
public function getKnowledgeConnectorSettings()
{
return $this->knowledgeConnectorSettings;
}
/**
* @param bool $locked
*/
public function setLocked($locked)
{
$this->locked = $locked;
}
/**
* @return bool
*/
public function getLocked()
{
return $this->locked;
}
/**
* @param GoogleCloudDialogflowCxV3FlowMultiLanguageSettings $multiLanguageSettings
*/
public function setMultiLanguageSettings(GoogleCloudDialogflowCxV3FlowMultiLanguageSettings $multiLanguageSettings)
{
$this->multiLanguageSettings = $multiLanguageSettings;
}
/**
* @return GoogleCloudDialogflowCxV3FlowMultiLanguageSettings
*/
public function getMultiLanguageSettings()
{
return $this->multiLanguageSettings;
}
/**
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param GoogleCloudDialogflowCxV3NluSettings $nluSettings
*/
public function setNluSettings(GoogleCloudDialogflowCxV3NluSettings $nluSettings)
{
$this->nluSettings = $nluSettings;
}
/**
* @return GoogleCloudDialogflowCxV3NluSettings
*/
public function getNluSettings()
{
return $this->nluSettings;
}
/**
* @param GoogleCloudDialogflowCxV3ParameterDefinition[] $outputParameterDefinitions
*/
public function setOutputParameterDefinitions($outputParameterDefinitions)
{
$this->outputParameterDefinitions = $outputParameterDefinitions;
}
/**
* @return GoogleCloudDialogflowCxV3ParameterDefinition[]
*/
public function getOutputParameterDefinitions()
{
return $this->outputParameterDefinitions;
}
/**
* @param string[] $transitionRouteGroups
*/
public function setTransitionRouteGroups($transitionRouteGroups)
{
$this->transitionRouteGroups = $transitionRouteGroups;
}
/**
* @return string[]
*/
public function getTransitionRouteGroups()
{
return $this->transitionRouteGroups;
}
/**
* @param GoogleCloudDialogflowCxV3TransitionRoute[] $transitionRoutes
*/
public function setTransitionRoutes($transitionRoutes)
{
$this->transitionRoutes = $transitionRoutes;
}
/**
* @return GoogleCloudDialogflowCxV3TransitionRoute[]
*/
public function getTransitionRoutes()
{
return $this->transitionRoutes;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDialogflowCxV3Flow::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3Flow');
← Back