Example #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
Example #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
 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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #13
0
 def created(self):
     """The date and time the event was performed."""
     return WebexTeamsDateTime.strptime(self._json_data.get('created'))
Example #14
0
 def created(self):
     """The date and time when the room was created."""
     return WebexTeamsDateTime.strptime(self._json_data.get('created'))
Example #15
0
 def lastActivity(self):
     """The date and time when the room was last active."""
     return WebexTeamsDateTime.strptime(self._json_data.get('lastActivity'))
Example #16
0
 def created(self):
     """Creation date and time in ISO8601 format."""
     return WebexTeamsDateTime.strptime(self._json_data.get('created'))
Example #17
0
 def created(self):
     """The date and time the message was created."""
     return WebexTeamsDateTime.strptime(self._json_data.get('created'))
Example #18
0
 def lastActivity(self):
     """The date and time of the person's last activity."""
     return WebexTeamsDateTime.strptime(self._json_data.get('lastActivity'))