You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when running api.rooms.get(roomId='myroomid') i am seeing that the class object gets all attributes from _json_data except ownerId. I am trying to leverage the SDK to check for rooms within an organization and think it would be easier if i didnt have to fetch the ownerId from inside the _json_data dictionary within the class object for the returned room.
Screenshot below shows the attribute in the dict but not in the root object.
is this a bug, or by design?
The text was updated successfully, but these errors were encountered:
Not by design @bradh11. Thanks for raising this. I'll be adding it to the property list and create a PR so that it is included in the next release. In the meantime you can just access the property over the dict itself.
I have added the ownerId to the property list of the room object. You can try the code by installing my development branch (pip3 install git+https://github.com/sQu4rks/webexteamssdk@issue-114) or wait until the PR gets merged and a new release gets pushed.
Uh oh!
There was an error while loading. Please reload this page.
when running
api.rooms.get(roomId='myroomid')
i am seeing that the class object gets all attributes from _json_data exceptownerId
. I am trying to leverage the SDK to check for rooms within an organization and think it would be easier if i didnt have to fetch the ownerId from inside the _json_data dictionary within the class object for the returned room.Screenshot below shows the attribute in the dict but not in the root object.

is this a bug, or by design?
The text was updated successfully, but these errors were encountered: