Skip to content

Commit fb1d5d9

Browse files
authored
[SDK-426] Add missing fields to ExportTask (#1283)
1 parent 609dde3 commit fb1d5d9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

labelbox/schema/export_task.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,16 @@ def type(self):
518518
"""Returns the type of the task."""
519519
return self._task.type
520520

521+
@property
522+
def created_by(self):
523+
"""Returns the user who created the task."""
524+
return self._task.created_by
525+
526+
@property
527+
def organization(self):
528+
"""Returns the organization of the task."""
529+
return self._task.organization
530+
521531
def wait_till_done(self, timeout_seconds: int = 300) -> None:
522532
"""Waits until the task is done."""
523533
return self._task.wait_till_done(timeout_seconds)

0 commit comments

Comments
 (0)