languageCode = $languageCode; } /** * @return string */ public function getLanguageCode() { return $this->languageCode; } /** * Required. The unique identifier of the event. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * The collection of parameters associated with the event. Depending on your * protocol or client library language, this is a map, associative array, * symbol table, dictionary, or JSON object composed of a collection of * (MapKey, MapValue) pairs: * MapKey type: string * MapKey value: parameter * name * MapValue type: If parameter's entity type is a composite entity then * use map, otherwise, depending on the parameter value type, it could be one * of string, number, boolean, null, list or map. * MapValue value: If * parameter's entity type is a composite entity then use map from composite * entity property names to property values, otherwise, use parameter value. * * @param array[] $parameters */ public function setParameters($parameters) { $this->parameters = $parameters; } /** * @return array[] */ public function getParameters() { return $this->parameters; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDialogflowV2beta1EventInput::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowV2beta1EventInput');