|
|
|
|
@ -25,34 +25,36 @@ class RequestSendLabReportEmail {
|
|
|
|
|
String invoiceNo;
|
|
|
|
|
String orderDate;
|
|
|
|
|
String orderNo;
|
|
|
|
|
bool isDownload;
|
|
|
|
|
|
|
|
|
|
RequestSendLabReportEmail(
|
|
|
|
|
{this.versionID,
|
|
|
|
|
this.channel,
|
|
|
|
|
this.languageID,
|
|
|
|
|
this.iPAdress,
|
|
|
|
|
this.generalid,
|
|
|
|
|
this.patientOutSA,
|
|
|
|
|
this.sessionID,
|
|
|
|
|
this.isDentalAllowedBackend,
|
|
|
|
|
this.deviceTypeID,
|
|
|
|
|
this.patientID,
|
|
|
|
|
this.tokenID,
|
|
|
|
|
this.patientTypeID,
|
|
|
|
|
this.patientType,
|
|
|
|
|
this.to,
|
|
|
|
|
this.dateofBirth,
|
|
|
|
|
this.patientIditificationNum,
|
|
|
|
|
this.patientMobileNumber,
|
|
|
|
|
this.patientName,
|
|
|
|
|
this.setupID,
|
|
|
|
|
this.projectName,
|
|
|
|
|
this.clinicName,
|
|
|
|
|
this.doctorName,
|
|
|
|
|
this.projectID,
|
|
|
|
|
this.invoiceNo,
|
|
|
|
|
this.orderDate,
|
|
|
|
|
this.orderNo});
|
|
|
|
|
this.channel,
|
|
|
|
|
this.languageID,
|
|
|
|
|
this.iPAdress,
|
|
|
|
|
this.generalid,
|
|
|
|
|
this.patientOutSA,
|
|
|
|
|
this.sessionID,
|
|
|
|
|
this.isDentalAllowedBackend,
|
|
|
|
|
this.deviceTypeID,
|
|
|
|
|
this.patientID,
|
|
|
|
|
this.tokenID,
|
|
|
|
|
this.patientTypeID,
|
|
|
|
|
this.patientType,
|
|
|
|
|
this.to,
|
|
|
|
|
this.dateofBirth,
|
|
|
|
|
this.patientIditificationNum,
|
|
|
|
|
this.patientMobileNumber,
|
|
|
|
|
this.patientName,
|
|
|
|
|
this.setupID,
|
|
|
|
|
this.projectName,
|
|
|
|
|
this.clinicName,
|
|
|
|
|
this.doctorName,
|
|
|
|
|
this.projectID,
|
|
|
|
|
this.invoiceNo,
|
|
|
|
|
this.orderDate,
|
|
|
|
|
this.orderNo,
|
|
|
|
|
this.isDownload});
|
|
|
|
|
|
|
|
|
|
RequestSendLabReportEmail.fromJson(Map<String, dynamic> json) {
|
|
|
|
|
versionID = json['VersionID'];
|
|
|
|
|
@ -81,6 +83,7 @@ class RequestSendLabReportEmail {
|
|
|
|
|
invoiceNo = json['InvoiceNo'];
|
|
|
|
|
orderDate = json['OrderDate'];
|
|
|
|
|
orderNo = json['OrderNo'];
|
|
|
|
|
isDownload = json['IsDownload'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
|
@ -111,6 +114,7 @@ class RequestSendLabReportEmail {
|
|
|
|
|
data['InvoiceNo'] = this.invoiceNo;
|
|
|
|
|
data['OrderDate'] = this.orderDate;
|
|
|
|
|
data['OrderNo'] = this.orderNo;
|
|
|
|
|
data['IsDownload'] = this.isDownload;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|