We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2bf410 commit b05f385Copy full SHA for b05f385
ciscosparkapi/api/rooms.py
@@ -53,6 +53,10 @@ def lastActivity(self):
53
def created(self):
54
return self._json[u'created']
55
56
+ @property
57
+ def creatorId(self):
58
+ return self._json[u'creatorId']
59
+
60
@property
61
def teamId(self):
62
"""Return the room teamId, if it exists, otherwise return None.
@@ -78,7 +82,7 @@ class RoomsAPI(object):
78
82
"""
79
83
80
84
def __init__(self, session):
81
- """Init a new RoomAPI object with the provided RestSession.
85
+ """Init a new RoomsAPI object with the provided RestSession.
86
87
Args:
88
session(RestSession): The RESTful session object to be used for
0 commit comments