diff --git a/lghorizon/lghorizon_api.py b/lghorizon/lghorizon_api.py index db75036..ed29f93 100644 --- a/lghorizon/lghorizon_api.py +++ b/lghorizon/lghorizon_api.py @@ -94,6 +94,14 @@ async def get_profiles(self) -> dict[str, LGHorizonProfile]: return self._customer.profiles + @property + async def has_cloud_recording(self) -> bool: + """Get profile IDs.""" + if not self._initialized: + raise RuntimeError("LGHorizonApi not initialized") + + return self._customer.has_cloud_recording + async def get_profile_channels( self, profile_id: Optional[str] = None ) -> Dict[str, LGHorizonChannel]: