From 89c532743e9b1a7c930f186907b244046ddce2ca Mon Sep 17 00:00:00 2001 From: Pranav Bedre Date: Wed, 10 Dec 2025 11:35:09 +0530 Subject: [PATCH] Update room.py --- src/webexpythonsdk/models/mixins/room.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/webexpythonsdk/models/mixins/room.py b/src/webexpythonsdk/models/mixins/room.py index 44e0127..139bdf0 100644 --- a/src/webexpythonsdk/models/mixins/room.py +++ b/src/webexpythonsdk/models/mixins/room.py @@ -89,12 +89,12 @@ def ownerId(self): @property def classificationId(self): """The ID of the current classification.""" - return self._json_data.get("ownerId") + return self._json_data.get("classificationId") @property def isAnnouncementOnly(self): """Indicates when a space is in Announcement Mode (only moderators can post).""" - return self._json_data.get("ownerId") + return self._json_data.get("isAnnouncementOnly") @property def isReadOnly(self): @@ -103,7 +103,7 @@ def isReadOnly(self): A compliance officer can set a direct room as read-only, which will disallow any new information exchanges in this space, while maintaining historical data. """ - return self._json_data.get("ownerId") + return self._json_data.get("isReadOnly") @property def isPublic(self): @@ -112,7 +112,7 @@ def isPublic(self): The room is public and therefore discoverable within the org. Anyone can find and join the room. """ - return self._json_data.get("ownerId") + return self._json_data.get("isPublic") @property def madePublic(self): @@ -126,4 +126,4 @@ def madePublic(self): @property def description(self): """The description of the room.""" - return self._json_data.get("ownerId") + return self._json_data.get("description")