activeConfig = $activeConfig; } /** * @return SasPortalDeviceConfig */ public function getActiveConfig() { return $this->activeConfig; } /** * @param SasPortalChannelWithScore[] */ public function setCurrentChannels($currentChannels) { $this->currentChannels = $currentChannels; } /** * @return SasPortalChannelWithScore[] */ public function getCurrentChannels() { return $this->currentChannels; } /** * @param SasPortalDeviceMetadata */ public function setDeviceMetadata(SasPortalDeviceMetadata $deviceMetadata) { $this->deviceMetadata = $deviceMetadata; } /** * @return SasPortalDeviceMetadata */ public function getDeviceMetadata() { return $this->deviceMetadata; } /** * @param string */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setFccId($fccId) { $this->fccId = $fccId; } /** * @return string */ public function getFccId() { return $this->fccId; } /** * @param SasPortalFrequencyRange[] */ public function setGrantRangeAllowlists($grantRangeAllowlists) { $this->grantRangeAllowlists = $grantRangeAllowlists; } /** * @return SasPortalFrequencyRange[] */ public function getGrantRangeAllowlists() { return $this->grantRangeAllowlists; } /** * @param SasPortalDeviceGrant[] */ public function setGrants($grants) { $this->grants = $grants; } /** * @return SasPortalDeviceGrant[] */ public function getGrants() { return $this->grants; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param SasPortalDeviceConfig */ public function setPreloadedConfig(SasPortalDeviceConfig $preloadedConfig) { $this->preloadedConfig = $preloadedConfig; } /** * @return SasPortalDeviceConfig */ public function getPreloadedConfig() { return $this->preloadedConfig; } /** * @param string */ public function setSerialNumber($serialNumber) { $this->serialNumber = $serialNumber; } /** * @return string */ public function getSerialNumber() { return $this->serialNumber; } /** * @param string */ public function setState($state) { $this->state = $state; } /** * @return string */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SasPortalDevice::class, 'Google_Service_SASPortalTesting_SasPortalDevice');