authenticationRequirement = $authenticationRequirement; } /** * @return self::AUTHENTICATION_REQUIREMENT_* */ public function getAuthenticationRequirement() { return $this->authenticationRequirement; } /** * [Optional] Specifies the managed Google account that the user must use * during enrollment.`AuthenticationRequirement` must be set to`REQUIRED` if * this field is set. * * @param string $requiredAccountEmail */ public function setRequiredAccountEmail($requiredAccountEmail) { $this->requiredAccountEmail = $requiredAccountEmail; } /** * @return string */ public function getRequiredAccountEmail() { return $this->requiredAccountEmail; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EnrollmentTokenGoogleAuthenticationOptions::class, 'Google_Service_AndroidEnterprise_EnrollmentTokenGoogleAuthenticationOptions');