19
19
boostUpdatedAt
20
20
boostRequestedBy
21
21
boostStatus
22
- tasksCompletedCount
23
- tasksPercentCompleted
24
- tasksRemainingCount
25
- tasksTotalCount
22
+ dataRowsCount
23
+ dataRowsDoneCount
24
+ dataRowsInReviewCount
25
+ dataRowsInReworkCount
26
26
mediaType
27
27
editorTaskType
28
28
tags
@@ -44,9 +44,8 @@ class LabelingServiceDashboard(BaseModel):
44
44
id (str): project id
45
45
name (str): project name
46
46
status (LabelingServiceStatus): status of the labeling service
47
- tasks_completed_count (int): number of data rows completed
48
- tasks_remaining_count (int): number of data rows that have not started
49
- tasks_total_count (int): total number of data rows in the project
47
+ data_rows_count (int): total number of data rows in the project
48
+ data_rows_done_count (int): number of data rows completed
50
49
tags (List[LabelingServiceDashboardTags]): tags associated with the project
51
50
media_type (MediaType): media type of the project
52
51
editor_task_type (EditorTaskType): editor task type of the project
@@ -58,9 +57,10 @@ class LabelingServiceDashboard(BaseModel):
58
57
updated_at : Optional [datetime ] = Field (frozen = True , default = None )
59
58
created_by_id : Optional [str ] = Field (frozen = True , default = None )
60
59
status : LabelingServiceStatus = Field (frozen = True , default = None )
61
- tasks_completed_count : int = Field (frozen = True )
62
- tasks_remaining_count : int = Field (frozen = True )
63
- tasks_total_count : int = Field (frozen = True )
60
+ data_rows_count : int = Field (frozen = True )
61
+ data_rows_done_count : int = Field (frozen = True )
62
+ data_rows_in_review_count : int = Field (frozen = True )
63
+ data_rows_in_rework_count : int = Field (frozen = True )
64
64
media_type : Optional [MediaType ] = Field (frozen = True , default = None )
65
65
editor_task_type : EditorTaskType = Field (frozen = True , default = None )
66
66
tags : List [LabelingServiceDashboardTags ] = Field (frozen = True , default = None )
0 commit comments