We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609dde3 commit fb1d5d9Copy full SHA for fb1d5d9
labelbox/schema/export_task.py
@@ -518,6 +518,16 @@ def type(self):
518
"""Returns the type of the task."""
519
return self._task.type
520
521
+ @property
522
+ def created_by(self):
523
+ """Returns the user who created the task."""
524
+ return self._task.created_by
525
+
526
527
+ def organization(self):
528
+ """Returns the organization of the task."""
529
+ return self._task.organization
530
531
def wait_till_done(self, timeout_seconds: int = 300) -> None:
532
"""Waits until the task is done."""
533
return self._task.wait_till_done(timeout_seconds)
0 commit comments