diff --git a/O365/tasks.py b/O365/tasks.py index 3550420..9c1608e 100644 --- a/O365/tasks.py +++ b/O365/tasks.py @@ -229,6 +229,15 @@ def due(self, value): self.__due = value self._track_changes.add(self._cc('dueDateTime')) + @property + def status(self): + """Status of task + + :getter: get status + :type: string + """ + return self.__status + @property def completed(self): """ Completed Time of task diff --git a/O365/tasks_graph.py b/O365/tasks_graph.py index 4f993df..d112215 100644 --- a/O365/tasks_graph.py +++ b/O365/tasks_graph.py @@ -289,6 +289,15 @@ def is_reminder_on(self, value): self.__is_reminder_on = value self._track_changes.add(self._cc("isReminderOn")) + @property + def status(self): + """Status of task + + :getter: get status + :type: string + """ + return self.__status + @property def completed(self): """Completed Time of task.