Esempio n. 1
0
 def lastActivity(self):
     """The date and time of the person's last activity."""
     last_activity = self._json_data.get('lastActivity')
     if last_activity:
         return WebexTeamsDateTime.strptime(last_activity)
     else:
         return None
Esempio n. 2
0
 def lastModified(self):
     """The date and time the person was last changed."""
     last_modified = self._json_data.get('lastModified')
     if last_modified:
         return WebexTeamsDateTime.strptime(last_modified)
     else:
         return None
Esempio n. 3
0
 def created(self):
     """The date and time when the team membership was created."""
     created = self._json_data.get('created')
     if created:
         return WebexTeamsDateTime.strptime(created)
     else:
         return None
Esempio n. 4
0
 def lastActivity(self):
     """The date and time when the room was last active."""
     last_activity = self._json_data.get('lastActivity')
     if last_activity:
         return WebexTeamsDateTime.strptime(last_activity)
     else:
         return None
Esempio n. 5
0
 def lastActivity(self):
     """The date and time of the person's last activity."""
     last_activity = self._json_data.get('lastActivity')
     if last_activity:
         return WebexTeamsDateTime.strptime(last_activity)
     else:
         return None
Esempio n. 6
0
 def created(self):
     """The date and time the webhook was created."""
     created = self._json_data.get('created')
     if created:
         return WebexTeamsDateTime.strptime(created)
     else:
         return None
Esempio n. 7
0
 def created(self):
     """Creation date and time in ISO8601 format."""
     created = self._json_data.get('created')
     if created:
         return WebexTeamsDateTime.strptime(created)
     else:
         return None
Esempio n. 8
0
 def updated(self):
     """The date and time the message was created."""
     created = self._json_data.get("updated")
     if created:
         return WebexTeamsDateTime.strptime(created)
     else:
         return None
Esempio n. 9
0
 def created(self):
     """The date and time of the event."""
     created = self._json_data.get('created')
     if created:
         return WebexTeamsDateTime.strptime(created)
     else:
         return None
Esempio n. 10
0
 def created(self):
     """Creation date and time in ISO8601 format."""
     created = self._json_data.get('created')
     if created:
         return WebexTeamsDateTime.strptime(created)
     else:
         return None
Esempio n. 11
0
 def created(self):
     """The date and time the person was created."""
     created = self._json_data.get('created')
     if created:
         return WebexTeamsDateTime.strptime(created)
     else:
         return None
Esempio n. 12
0
 def lastActivity(self):
     """The date and time when the room was last active."""
     last_activity = self._json_data.get('lastActivity')
     if last_activity:
         return WebexTeamsDateTime.strptime(last_activity)
     else:
         return None
Esempio n. 13
0
 def created(self):
     """The date and time the event was performed."""
     return WebexTeamsDateTime.strptime(self._json_data.get('created'))
Esempio n. 14
0
 def created(self):
     """The date and time when the room was created."""
     return WebexTeamsDateTime.strptime(self._json_data.get('created'))
Esempio n. 15
0
 def lastActivity(self):
     """The date and time when the room was last active."""
     return WebexTeamsDateTime.strptime(self._json_data.get('lastActivity'))
Esempio n. 16
0
 def created(self):
     """Creation date and time in ISO8601 format."""
     return WebexTeamsDateTime.strptime(self._json_data.get('created'))
Esempio n. 17
0
 def created(self):
     """The date and time the message was created."""
     return WebexTeamsDateTime.strptime(self._json_data.get('created'))
Esempio n. 18
0
 def lastActivity(self):
     """The date and time of the person's last activity."""
     return WebexTeamsDateTime.strptime(self._json_data.get('lastActivity'))