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.
2 parents 20876b3 + dcf931a commit d76ed26Copy full SHA for d76ed26
webexteamssdk/models/mixins/message.py
@@ -132,9 +132,9 @@ def created(self):
132
133
@property
134
def updated(self):
135
- """The date and time the message was created."""
136
- created = self._json_data.get("updated")
137
- if created:
138
- return WebexTeamsDateTime.strptime(created)
+ """The date and time the message was updated."""
+ updated = self._json_data.get("updated")
+ if updated:
+ return WebexTeamsDateTime.strptime(updated)
139
else:
140
return None
0 commit comments