createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Dataset description. * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Display name for the dataaset * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * Immutable. Identifier. Resource name of the dataset. Format: * projects/{project}/locations/{location}/datasets/{dataset} * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Optional. Option TTL for the dataset. * * @param string $ttl */ public function setTtl($ttl) { $this->ttl = $ttl; } /** * @return string */ public function getTtl() { return $this->ttl; } /** * Dataset usage type. * * Accepted values: TYPE_UNSPECIFIED, EVAL, LIVE * * @param self::TYPE_* $type */ public function setType($type) { $this->type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } /** * Output only. Dataset update time. * * @param string $updateTime */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudContactcenterinsightsV1mainDataset::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1mainDataset');