Skip to content

Commit 574316d

Browse files
committed
Added ownerId to property list - resolves issue #114
1 parent c0cdea6 commit 574316d

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)