示例#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
 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'))