defaultValue = $defaultValue; } /** * @return string */ public function getDefaultValue() { return $this->defaultValue; } /** * @param string */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setEntityTypeDisplayName($entityTypeDisplayName) { $this->entityTypeDisplayName = $entityTypeDisplayName; } /** * @return string */ public function getEntityTypeDisplayName() { return $this->entityTypeDisplayName; } /** * @param bool */ public function setIsList($isList) { $this->isList = $isList; } /** * @return bool */ public function getIsList() { return $this->isList; } /** * @param bool */ public function setMandatory($mandatory) { $this->mandatory = $mandatory; } /** * @return bool */ public function getMandatory() { return $this->mandatory; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string[] */ public function setPrompts($prompts) { $this->prompts = $prompts; } /** * @return string[] */ public function getPrompts() { return $this->prompts; } /** * @param string */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDialogflowV2IntentParameter::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowV2IntentParameter');