📄 Source: GoogleCloudDialogflowCxV3Experiment.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 GoogleCloudDialogflowCxV3Experiment extends \Google\Collection
{
public const STATE_STATE_UNSPECIFIED = 'STATE_UNSPECIFIED';
public const STATE_DRAFT = 'DRAFT';
public const STATE_RUNNING = 'RUNNING';
public const STATE_DONE = 'DONE';
public const STATE_ROLLOUT_FAILED = 'ROLLOUT_FAILED';
protected $collection_key = 'variantsHistory';
/**
* @var string
*/
public $createTime;
protected $definitionType = GoogleCloudDialogflowCxV3ExperimentDefinition::class;
protected $definitionDataType = '';
/**
* @var string
*/
public $description;
/**
* @var string
*/
public $displayName;
/**
* @var string
*/
public $endTime;
/**
* @var string
*/
public $experimentLength;
/**
* @var string
*/
public $lastUpdateTime;
/**
* @var string
*/
public $name;
protected $resultType = GoogleCloudDialogflowCxV3ExperimentResult::class;
protected $resultDataType = '';
protected $rolloutConfigType = GoogleCloudDialogflowCxV3RolloutConfig::class;
protected $rolloutConfigDataType = '';
/**
* @var string
*/
public $rolloutFailureReason;
protected $rolloutStateType = GoogleCloudDialogflowCxV3RolloutState::class;
protected $rolloutStateDataType = '';
/**
* @var string
*/
public $startTime;
/**
* @var string
*/
public $state;
protected $variantsHistoryType = GoogleCloudDialogflowCxV3VariantsHistory::class;
protected $variantsHistoryDataType = 'array';
/**
* @param string $createTime
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* @param GoogleCloudDialogflowCxV3ExperimentDefinition $definition
*/
public function setDefinition(GoogleCloudDialogflowCxV3ExperimentDefinition $definition)
{
$this->definition = $definition;
}
/**
* @return GoogleCloudDialogflowCxV3ExperimentDefinition
*/
public function getDefinition()
{
return $this->definition;
}
/**
* @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 string $endTime
*/
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
/**
* @return string
*/
public function getEndTime()
{
return $this->endTime;
}
/**
* @param string $experimentLength
*/
public function setExperimentLength($experimentLength)
{
$this->experimentLength = $experimentLength;
}
/**
* @return string
*/
public function getExperimentLength()
{
return $this->experimentLength;
}
/**
* @param string $lastUpdateTime
*/
public function setLastUpdateTime($lastUpdateTime)
{
$this->lastUpdateTime = $lastUpdateTime;
}
/**
* @return string
*/
public function getLastUpdateTime()
{
return $this->lastUpdateTime;
}
/**
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param GoogleCloudDialogflowCxV3ExperimentResult $result
*/
public function setResult(GoogleCloudDialogflowCxV3ExperimentResult $result)
{
$this->result = $result;
}
/**
* @return GoogleCloudDialogflowCxV3ExperimentResult
*/
public function getResult()
{
return $this->result;
}
/**
* @param GoogleCloudDialogflowCxV3RolloutConfig $rolloutConfig
*/
public function setRolloutConfig(GoogleCloudDialogflowCxV3RolloutConfig $rolloutConfig)
{
$this->rolloutConfig = $rolloutConfig;
}
/**
* @return GoogleCloudDialogflowCxV3RolloutConfig
*/
public function getRolloutConfig()
{
return $this->rolloutConfig;
}
/**
* @param string $rolloutFailureReason
*/
public function setRolloutFailureReason($rolloutFailureReason)
{
$this->rolloutFailureReason = $rolloutFailureReason;
}
/**
* @return string
*/
public function getRolloutFailureReason()
{
return $this->rolloutFailureReason;
}
/**
* @param GoogleCloudDialogflowCxV3RolloutState $rolloutState
*/
public function setRolloutState(GoogleCloudDialogflowCxV3RolloutState $rolloutState)
{
$this->rolloutState = $rolloutState;
}
/**
* @return GoogleCloudDialogflowCxV3RolloutState
*/
public function getRolloutState()
{
return $this->rolloutState;
}
/**
* @param string $startTime
*/
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
/**
* @return string
*/
public function getStartTime()
{
return $this->startTime;
}
/**
* @param self::STATE_* $state
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return self::STATE_*
*/
public function getState()
{
return $this->state;
}
/**
* @param GoogleCloudDialogflowCxV3VariantsHistory[] $variantsHistory
*/
public function setVariantsHistory($variantsHistory)
{
$this->variantsHistory = $variantsHistory;
}
/**
* @return GoogleCloudDialogflowCxV3VariantsHistory[]
*/
public function getVariantsHistory()
{
return $this->variantsHistory;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDialogflowCxV3Experiment::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3Experiment');
← Back