You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
Dart
61 lines
1.7 KiB
Dart
class GetAdmissionInfoResponseModel {
|
|
int admissionNo;
|
|
String admissionDate;
|
|
String infotainmentIBMSLink;
|
|
String infotainmentIBMSLinkAr;
|
|
int projectID;
|
|
String roomID;
|
|
String bedID;
|
|
int clinicID;
|
|
int doctorID;
|
|
int patientID;
|
|
String bMIUrl;
|
|
String mOPUrl;
|
|
|
|
GetAdmissionInfoResponseModel(
|
|
{this.admissionNo,
|
|
this.admissionDate,
|
|
this.infotainmentIBMSLink,
|
|
this.infotainmentIBMSLinkAr,
|
|
this.projectID,
|
|
this.roomID,
|
|
this.bedID,
|
|
this.clinicID,
|
|
this.doctorID,
|
|
this.patientID,
|
|
this.bMIUrl,
|
|
this.mOPUrl});
|
|
|
|
GetAdmissionInfoResponseModel.fromJson(Map<String, dynamic> json) {
|
|
admissionNo = json['AdmissionNo'];
|
|
admissionDate = json['AdmissionDate'];
|
|
infotainmentIBMSLink = json['InfotainmentIBMSLink'];
|
|
infotainmentIBMSLinkAr = json['InfotainmentIBMSLinkAr'];
|
|
projectID = json['ProjectID'];
|
|
roomID = json['RoomID'];
|
|
bedID = json['BedID'];
|
|
clinicID = json['ClinicID'];
|
|
doctorID = json['DoctorID'];
|
|
patientID = json['PatientID'];
|
|
bMIUrl = json['BMIUrl'];
|
|
mOPUrl = json['MOPUrl'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['AdmissionNo'] = this.admissionNo;
|
|
data['AdmissionDate'] = this.admissionDate;
|
|
data['InfotainmentIBMSLink'] = this.infotainmentIBMSLink;
|
|
data['InfotainmentIBMSLinkAr'] = this.infotainmentIBMSLinkAr;
|
|
data['ProjectID'] = this.projectID;
|
|
data['RoomID'] = this.roomID;
|
|
data['BedID'] = this.bedID;
|
|
data['ClinicID'] = this.clinicID;
|
|
data['DoctorID'] = this.doctorID;
|
|
data['PatientID'] = this.patientID;
|
|
data['BMIUrl'] = this.bMIUrl;
|
|
data['MOPUrl'] = this.mOPUrl;
|
|
return data;
|
|
}
|
|
}
|