agentId = $agentId; } /** * @return string */ public function getAgentId() { return $this->agentId; } /** * @param array[] */ public function setAttributes($attributes) { $this->attributes = $attributes; } /** * @return array[] */ public function getAttributes() { return $this->attributes; } /** * @param string */ public function setDeviceId($deviceId) { $this->deviceId = $deviceId; } /** * @return string */ public function getDeviceId() { return $this->deviceId; } /** * @param string */ public function setDeviceType($deviceType) { $this->deviceType = $deviceType; } /** * @return string */ public function getDeviceType() { return $this->deviceType; } /** * @param bool */ public function setShouldWriteToHomeGraph($shouldWriteToHomeGraph) { $this->shouldWriteToHomeGraph = $shouldWriteToHomeGraph; } /** * @return bool */ public function getShouldWriteToHomeGraph() { return $this->shouldWriteToHomeGraph; } /** * @param string[] */ public function setSupportedTraits($supportedTraits) { $this->supportedTraits = $supportedTraits; } /** * @return string[] */ public function getSupportedTraits() { return $this->supportedTraits; } /** * @param bool */ public function setSupportsDirectResponse($supportsDirectResponse) { $this->supportsDirectResponse = $supportsDirectResponse; } /** * @return bool */ public function getSupportsDirectResponse() { return $this->supportsDirectResponse; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AssistantApiSettingsHomeGraphData::class, 'Google_Service_Contentwarehouse_AssistantApiSettingsHomeGraphData');