|
|
|
|
@ -491,6 +491,7 @@ class TaskTypeModel {
|
|
|
|
|
final List<dynamic>? taskTypeRoles;
|
|
|
|
|
final bool? isInstallation;
|
|
|
|
|
final bool? isRecallAndAlert;
|
|
|
|
|
final bool? isSignatureRequired;
|
|
|
|
|
|
|
|
|
|
TaskTypeModel({
|
|
|
|
|
this.id,
|
|
|
|
|
@ -500,6 +501,7 @@ class TaskTypeModel {
|
|
|
|
|
this.taskTypeRoles,
|
|
|
|
|
this.isInstallation,
|
|
|
|
|
this.isRecallAndAlert,
|
|
|
|
|
this.isSignatureRequired,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
factory TaskTypeModel.fromJson(Map<String, dynamic> json) => TaskTypeModel(
|
|
|
|
|
@ -510,6 +512,7 @@ class TaskTypeModel {
|
|
|
|
|
taskTypeRoles: json['taskTypeRoles'],
|
|
|
|
|
isInstallation: json['isInstallation'],
|
|
|
|
|
isRecallAndAlert: json['isRecallAndAlert'],
|
|
|
|
|
isSignatureRequired: json['isSignatureRequired'],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
|
|
|
@ -520,6 +523,7 @@ class TaskTypeModel {
|
|
|
|
|
'taskTypeRoles': taskTypeRoles,
|
|
|
|
|
'isInstallation': isInstallation,
|
|
|
|
|
'isRecallAndAlert': isRecallAndAlert,
|
|
|
|
|
'isSignatureRequired': isSignatureRequired,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|