in pygenie/jobs/running.py [0:0]
def update_time(self):
"""
Get the last update time for the job in epoch time (milliseconds).
Example:
>>> running_job.update_time
1234567890
Returns:
int: The update time in epoch (milliseconds).
"""
status = self.status
if ('updated' not in self.info) \
or status in RUNNING_STATUSES \
or status is None:
self._update_info('job')
return self.__convert_dttm_to_epoch('updated')