diff --git a/simvue/api/objects/run.py b/simvue/api/objects/run.py index f883788c..c00b3f9e 100644 --- a/simvue/api/objects/run.py +++ b/simvue/api/objects/run.py @@ -229,6 +229,11 @@ def metadata(self) -> dict[str, typing.Any]: def metadata(self, metadata: dict[str, typing.Any]) -> None: self._staging["metadata"] = metadata + @property + def user(self) -> str: + """Return the user associate with this run.""" + return self._get_attribute("user") + @property @staging_check def description(self) -> str: