dedicatedDevicesAllowed = $dedicatedDevicesAllowed; } /** * @return self::DEDICATED_DEVICES_ALLOWED_* */ public function getDedicatedDevicesAllowed() { return $this->dedicatedDevicesAllowed; } /** * Whether Google authentication is required. * * Accepted values: googleAuthenticationRequiredUnspecified, notRequired, * required * * @param self::GOOGLE_AUTHENTICATION_REQUIRED_* $googleAuthenticationRequired */ public function setGoogleAuthenticationRequired($googleAuthenticationRequired) { $this->googleAuthenticationRequired = $googleAuthenticationRequired; } /** * @return self::GOOGLE_AUTHENTICATION_REQUIRED_* */ public function getGoogleAuthenticationRequired() { return $this->googleAuthenticationRequired; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleAuthenticationSettings::class, 'Google_Service_AndroidEnterprise_GoogleAuthenticationSettings');