Skip to content

Commit 5d4bb9b

Browse files
authored
Merge pull request #117 from sQu4rks/issue-114
Added ownerId to property list of room
2 parents 4ebf157 + 574316d commit 5d4bb9b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

webexteamssdk/models/mixins/room.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ def creatorId(self):
8383
"""The ID of the person who created this room."""
8484
return self._json_data.get('creatorId')
8585

86+
@property
87+
def ownerId(self):
88+
"""The ID of the organization which owns this room."""
89+
return self._json_data.get('ownerId')
90+
8691
@property
8792
def created(self):
8893
"""The date and time the room was created."""

0 commit comments

Comments
 (0)