|
|
|
@ -1,5 +1,7 @@
|
|
|
|
import 'package:doctor_app_flutter/util/helpers.dart';
|
|
|
|
import 'package:doctor_app_flutter/util/helpers.dart';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ListGtMyPatientsQuestions {
|
|
|
|
class ListGtMyPatientsQuestions {
|
|
|
|
String setupID;
|
|
|
|
String setupID;
|
|
|
|
int projectID;
|
|
|
|
int projectID;
|
|
|
|
@ -17,11 +19,14 @@ class ListGtMyPatientsQuestions {
|
|
|
|
int editedBy;
|
|
|
|
int editedBy;
|
|
|
|
String editedOn;
|
|
|
|
String editedOn;
|
|
|
|
String patientName;
|
|
|
|
String patientName;
|
|
|
|
String patientNameN;
|
|
|
|
Null patientNameN;
|
|
|
|
int gender;
|
|
|
|
int gender;
|
|
|
|
String dateofBirth;
|
|
|
|
String dateofBirth;
|
|
|
|
String mobileNumber;
|
|
|
|
String mobileNumber;
|
|
|
|
String emailAddress;
|
|
|
|
String emailAddress;
|
|
|
|
|
|
|
|
String doctorResponse;
|
|
|
|
|
|
|
|
String infoStatus;
|
|
|
|
|
|
|
|
Null clinicID;
|
|
|
|
String age;
|
|
|
|
String age;
|
|
|
|
String genderDescription;
|
|
|
|
String genderDescription;
|
|
|
|
bool isVidaCall;
|
|
|
|
bool isVidaCall;
|
|
|
|
@ -48,6 +53,9 @@ class ListGtMyPatientsQuestions {
|
|
|
|
this.dateofBirth,
|
|
|
|
this.dateofBirth,
|
|
|
|
this.mobileNumber,
|
|
|
|
this.mobileNumber,
|
|
|
|
this.emailAddress,
|
|
|
|
this.emailAddress,
|
|
|
|
|
|
|
|
this.doctorResponse,
|
|
|
|
|
|
|
|
this.infoStatus,
|
|
|
|
|
|
|
|
this.clinicID,
|
|
|
|
this.age,
|
|
|
|
this.age,
|
|
|
|
this.genderDescription,
|
|
|
|
this.genderDescription,
|
|
|
|
this.isVidaCall});
|
|
|
|
this.isVidaCall});
|
|
|
|
@ -61,6 +69,7 @@ class ListGtMyPatientsQuestions {
|
|
|
|
doctorID = json['DoctorID'];
|
|
|
|
doctorID = json['DoctorID'];
|
|
|
|
requestType = json['RequestType'];
|
|
|
|
requestType = json['RequestType'];
|
|
|
|
requestDate = Helpers.convertStringToDate(json['RequestDate']) ;
|
|
|
|
requestDate = Helpers.convertStringToDate(json['RequestDate']) ;
|
|
|
|
|
|
|
|
|
|
|
|
requestTime = json['RequestTime'];
|
|
|
|
requestTime = json['RequestTime'];
|
|
|
|
remarks = json['Remarks'];
|
|
|
|
remarks = json['Remarks'];
|
|
|
|
status = json['Status'];
|
|
|
|
status = json['Status'];
|
|
|
|
@ -74,6 +83,9 @@ class ListGtMyPatientsQuestions {
|
|
|
|
dateofBirth = json['DateofBirth'];
|
|
|
|
dateofBirth = json['DateofBirth'];
|
|
|
|
mobileNumber = json['MobileNumber'];
|
|
|
|
mobileNumber = json['MobileNumber'];
|
|
|
|
emailAddress = json['EmailAddress'];
|
|
|
|
emailAddress = json['EmailAddress'];
|
|
|
|
|
|
|
|
doctorResponse = json['DoctorResponse'];
|
|
|
|
|
|
|
|
infoStatus = json['InfoStatus'];
|
|
|
|
|
|
|
|
clinicID = json['ClinicID'];
|
|
|
|
age = json['Age'];
|
|
|
|
age = json['Age'];
|
|
|
|
genderDescription = json['GenderDescription'];
|
|
|
|
genderDescription = json['GenderDescription'];
|
|
|
|
isVidaCall = json['IsVidaCall'];
|
|
|
|
isVidaCall = json['IsVidaCall'];
|
|
|
|
@ -102,9 +114,12 @@ class ListGtMyPatientsQuestions {
|
|
|
|
data['DateofBirth'] = this.dateofBirth;
|
|
|
|
data['DateofBirth'] = this.dateofBirth;
|
|
|
|
data['MobileNumber'] = this.mobileNumber;
|
|
|
|
data['MobileNumber'] = this.mobileNumber;
|
|
|
|
data['EmailAddress'] = this.emailAddress;
|
|
|
|
data['EmailAddress'] = this.emailAddress;
|
|
|
|
|
|
|
|
data['DoctorResponse'] = this.doctorResponse;
|
|
|
|
|
|
|
|
data['InfoStatus'] = this.infoStatus;
|
|
|
|
|
|
|
|
data['ClinicID'] = this.clinicID;
|
|
|
|
data['Age'] = this.age;
|
|
|
|
data['Age'] = this.age;
|
|
|
|
data['GenderDescription'] = this.genderDescription;
|
|
|
|
data['GenderDescription'] = this.genderDescription;
|
|
|
|
data['IsVidaCall'] = this.isVidaCall;
|
|
|
|
data['IsVidaCall'] = this.isVidaCall;
|
|
|
|
return data;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|