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