business = $business; } /** * @return string */ public function getBusiness() { return $this->business; } /** * Required. The default language of the agent as a language tag. See * [Language * Support](https://cloud.google.com/dialogflow/docs/reference/language) for a * list of the currently supported language codes. * * @param string $defaultLanguageCode */ public function setDefaultLanguageCode($defaultLanguageCode) { $this->defaultLanguageCode = $defaultLanguageCode; } /** * @return string */ public function getDefaultLanguageCode() { return $this->defaultLanguageCode; } /** * Agent location for Agent creation, supported values: global/us/eu. If not * provided, us Engine will create Agent using us-central-1 by default; eu * Engine will create Agent using eu-west-1 by default. * * @param string $location */ public function setLocation($location) { $this->location = $location; } /** * @return string */ public function getLocation() { return $this->location; } /** * Required. The time zone of the agent from the [time zone * database](https://www.iana.org/time-zones), e.g., America/New_York, * Europe/Paris. * * @param string $timeZone */ public function setTimeZone($timeZone) { $this->timeZone = $timeZone; } /** * @return string */ public function getTimeZone() { return $this->timeZone; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfigAgentCreationConfig::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfigAgentCreationConfig');