extensions = $extensions; } /** * @return AgentExtension[] */ public function getExtensions() { return $this->extensions; } /** * If the agent can send push notifications to the clients webhook * * @param bool $pushNotifications */ public function setPushNotifications($pushNotifications) { $this->pushNotifications = $pushNotifications; } /** * @return bool */ public function getPushNotifications() { return $this->pushNotifications; } /** * If the agent will support streaming responses * * @param bool $streaming */ public function setStreaming($streaming) { $this->streaming = $streaming; } /** * @return bool */ public function getStreaming() { return $this->streaming; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AgentCapabilities::class, 'Google_Service_WorkspaceEvents_AgentCapabilities');