|
|
@ -17,7 +17,7 @@ export class ProjectReadItem { |
|
|
|
public current_users_role: CurrentUsersRole, |
|
|
|
public project_type: ProjectType, |
|
|
|
public updated_at: string, |
|
|
|
public randomize_document_order: boolean, |
|
|
|
public random_order: boolean, |
|
|
|
public collaborative_annotation: boolean, |
|
|
|
public single_class_classification: boolean, |
|
|
|
public resourcetype: string, |
|
|
@ -34,7 +34,7 @@ export class ProjectReadItem { |
|
|
|
current_users_role, |
|
|
|
project_type, |
|
|
|
updated_at, |
|
|
|
randomize_document_order, |
|
|
|
random_order, |
|
|
|
collaborative_annotation, |
|
|
|
single_class_classification, |
|
|
|
resourcetype, |
|
|
@ -49,7 +49,7 @@ export class ProjectReadItem { |
|
|
|
current_users_role: CurrentUsersRole, |
|
|
|
project_type: ProjectType, |
|
|
|
updated_at: string, |
|
|
|
randomize_document_order: boolean, |
|
|
|
random_order: boolean, |
|
|
|
collaborative_annotation: boolean, |
|
|
|
single_class_classification: boolean, |
|
|
|
resourcetype: string, |
|
|
@ -65,7 +65,7 @@ export class ProjectReadItem { |
|
|
|
current_users_role, |
|
|
|
project_type, |
|
|
|
updated_at, |
|
|
|
randomize_document_order, |
|
|
|
random_order, |
|
|
|
collaborative_annotation, |
|
|
|
single_class_classification, |
|
|
|
resourcetype, |
|
|
@ -110,7 +110,7 @@ export class ProjectReadItem { |
|
|
|
current_users_role: this.current_users_role, |
|
|
|
project_type: this.project_type, |
|
|
|
updated_at: this.updated_at, |
|
|
|
randomize_document_order: this.randomize_document_order, |
|
|
|
random_order: this.random_order, |
|
|
|
collaborative_annotation: this.collaborative_annotation, |
|
|
|
single_class_classification: this.single_class_classification, |
|
|
|
resourcetype: this.resourcetype, |
|
|
@ -126,7 +126,7 @@ export class ProjectWriteItem { |
|
|
|
public description: string, |
|
|
|
public guideline: string, |
|
|
|
public project_type: ProjectType, |
|
|
|
public randomize_document_order: boolean, |
|
|
|
public random_order: boolean, |
|
|
|
public collaborative_annotation: boolean, |
|
|
|
public single_class_classification: boolean |
|
|
|
) {} |
|
|
@ -138,7 +138,7 @@ export class ProjectWriteItem { |
|
|
|
description, |
|
|
|
guideline, |
|
|
|
project_type, |
|
|
|
randomize_document_order, |
|
|
|
random_order, |
|
|
|
collaborative_annotation, |
|
|
|
single_class_classification |
|
|
|
}: |
|
|
@ -148,7 +148,7 @@ export class ProjectWriteItem { |
|
|
|
description: string, |
|
|
|
guideline: string, |
|
|
|
project_type: ProjectType, |
|
|
|
randomize_document_order: boolean, |
|
|
|
random_order: boolean, |
|
|
|
collaborative_annotation: boolean, |
|
|
|
single_class_classification: boolean |
|
|
|
} |
|
|
@ -159,7 +159,7 @@ export class ProjectWriteItem { |
|
|
|
description, |
|
|
|
guideline, |
|
|
|
project_type, |
|
|
|
randomize_document_order, |
|
|
|
random_order, |
|
|
|
collaborative_annotation, |
|
|
|
single_class_classification |
|
|
|
) |
|
|
@ -181,7 +181,7 @@ export class ProjectWriteItem { |
|
|
|
description: this.description, |
|
|
|
guideline: this.guideline, |
|
|
|
project_type: this.project_type, |
|
|
|
randomize_document_order: this.randomize_document_order, |
|
|
|
random_order: this.random_order, |
|
|
|
collaborative_annotation: this.collaborative_annotation, |
|
|
|
single_class_classification: this.single_class_classification, |
|
|
|
resourcetype: this.resourceType |
|
|
|