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