bot = $bot; } /** * @return User */ public function getBot() { return $this->bot; } /** * @param string */ public function setCommandId($commandId) { $this->commandId = $commandId; } /** * @return string */ public function getCommandId() { return $this->commandId; } /** * @param string */ public function setCommandName($commandName) { $this->commandName = $commandName; } /** * @return string */ public function getCommandName() { return $this->commandName; } /** * @param bool */ public function setTriggersDialog($triggersDialog) { $this->triggersDialog = $triggersDialog; } /** * @return bool */ public function getTriggersDialog() { return $this->triggersDialog; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SlashCommandMetadata::class, 'Google_Service_HangoutsChat_SlashCommandMetadata');