set('username', $username); return $this; } public function setIpAddress(?string $ipAddress): self { $this->set('ipAddress', $ipAddress); return $this; } public function setRequestMethod(string $requestMethod): self { $this->set('requestMethod', $requestMethod); return $this; } public function setRequestUrl(string $requestUrl): self { $this->set('requestUrl', $requestUrl); return $this; } public function setAuthenticationMethod(?string $authenticationMethod): self { $this->set('authenticationMethod', $authenticationMethod); return $this; } public function setRequestTime(?float $requestTime): self { $this->set('requestTime', $requestTime); return $this; } public function setUserId(?string $userId): self { $this->set('userId', $userId); return $this; } public function setPortalId(?string $portalId): self { $this->set('portalId', $portalId); return $this; } public function setAuthTokenId(?string $authTokenId): self { $this->set('authTokenId', $authTokenId); return $this; } public function setIsDenied(bool $isDenied = true): self { $this->set('isDenied', $isDenied); return $this; } public function setDenialReason(?string $denialReason): self { $this->set('denialReason', $denialReason); return $this; } }