address = $address; } /** * @return string */ public function getAddress() { return $this->address; } /** * Output only. The number of devices connected to this adapter. * * @param int $numConnectedDevices */ public function setNumConnectedDevices($numConnectedDevices) { $this->numConnectedDevices = $numConnectedDevices; } /** * @return int */ public function getNumConnectedDevices() { return $this->numConnectedDevices; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BluetoothAdapterInfo::class, 'Google_Service_Directory_BluetoothAdapterInfo');