activeSettings = $activeSettings; } /** * @return AccessSettings */ public function getActiveSettings() { return $this->activeSettings; } /** * @param AccessSettings */ public function setDryRunSettings(AccessSettings $dryRunSettings) { $this->dryRunSettings = $dryRunSettings; } /** * @return AccessSettings */ public function getDryRunSettings() { return $this->dryRunSettings; } /** * @param AccessScope */ public function setScope(AccessScope $scope) { $this->scope = $scope; } /** * @return AccessScope */ public function getScope() { return $this->scope; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ScopedAccessSettings::class, 'Google_Service_AccessContextManager_ScopedAccessSettings');