allowWithoutCredential = $allowWithoutCredential; } /** * @return bool */ public function getAllowWithoutCredential() { return $this->allowWithoutCredential; } /** * @param OAuthRequirements */ public function setOauth(OAuthRequirements $oauth) { $this->oauth = $oauth; } /** * @return OAuthRequirements */ public function getOauth() { return $this->oauth; } /** * @param AuthRequirement[] */ public function setRequirements($requirements) { $this->requirements = $requirements; } /** * @return AuthRequirement[] */ public function getRequirements() { return $this->requirements; } /** * @param string */ public function setSelector($selector) { $this->selector = $selector; } /** * @return string */ public function getSelector() { return $this->selector; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AuthenticationRule::class, 'Google_Service_ServiceManagement_AuthenticationRule');