createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Count of user licenses that failed to be updated. * * @param string $failureCount */ public function setFailureCount($failureCount) { $this->failureCount = $failureCount; } /** * @return string */ public function getFailureCount() { return $this->failureCount; } /** * Count of user licenses successfully updated. * * @param string $successCount */ public function setSuccessCount($successCount) { $this->successCount = $successCount; } /** * @return string */ public function getSuccessCount() { return $this->successCount; } /** * Operation last update time. If the operation is done, this is also the * finish 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(GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1BatchUpdateUserLicensesMetadata');