get('url'); } public function getRequestId(): string { return $this->get('requestId'); } public function getUserId(): string { $userId = $this->get('userId'); if ($userId === null) { throw new UnexpectedValueException(); } return $userId; } }