Manual Insurance Updates, Service ID fixes, Tamara Fixes
parent
52070c8f94
commit
22a0e456bc
@ -0,0 +1,64 @@
|
||||
class InsuranceManualUpdateRequest {
|
||||
String setupID;
|
||||
String patientIdentificationID;
|
||||
int projectID;
|
||||
String mobileNo;
|
||||
int activityId;
|
||||
String component;
|
||||
bool enableLogging;
|
||||
String insuranceCompanyName;
|
||||
String cardHolderName;
|
||||
String memberShipNo;
|
||||
String policyNo;
|
||||
String schemeClass;
|
||||
int requestType;
|
||||
|
||||
InsuranceManualUpdateRequest(
|
||||
{this.setupID,
|
||||
this.patientIdentificationID,
|
||||
this.projectID,
|
||||
this.mobileNo,
|
||||
this.activityId,
|
||||
this.component,
|
||||
this.enableLogging,
|
||||
this.insuranceCompanyName,
|
||||
this.cardHolderName,
|
||||
this.memberShipNo,
|
||||
this.policyNo,
|
||||
this.schemeClass,
|
||||
this.requestType});
|
||||
|
||||
InsuranceManualUpdateRequest.fromJson(Map<String, dynamic> json) {
|
||||
setupID = json['SetupID'];
|
||||
patientIdentificationID = json['PatientIdentificationID'];
|
||||
projectID = json['ProjectID'];
|
||||
mobileNo = json['MobileNo'];
|
||||
activityId = json['activityId'];
|
||||
component = json['component'];
|
||||
enableLogging = json['enableLogging'];
|
||||
insuranceCompanyName = json['InsuranceCompanyName'];
|
||||
cardHolderName = json['CardHolderName'];
|
||||
memberShipNo = json['MemberShipNo'];
|
||||
policyNo = json['PolicyNo'];
|
||||
schemeClass = json['SchemeClass'];
|
||||
requestType = json['RequestType'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['SetupID'] = this.setupID;
|
||||
data['PatientIdentificationID'] = this.patientIdentificationID;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['MobileNo'] = this.mobileNo;
|
||||
data['activityId'] = this.activityId;
|
||||
data['component'] = this.component;
|
||||
data['enableLogging'] = this.enableLogging;
|
||||
data['InsuranceCompanyName'] = this.insuranceCompanyName;
|
||||
data['CardHolderName'] = this.cardHolderName;
|
||||
data['MemberShipNo'] = this.memberShipNo;
|
||||
data['PolicyNo'] = this.policyNo;
|
||||
data['SchemeClass'] = this.schemeClass;
|
||||
data['RequestType'] = this.requestType;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,72 @@
|
||||
class InsuranceCompaniesSchemeModel {
|
||||
String setupID;
|
||||
int projectID;
|
||||
int companyID;
|
||||
int subCategoryID;
|
||||
String subCategoryDesc;
|
||||
String subCategoryDescN;
|
||||
String validFrom;
|
||||
String validTo;
|
||||
var isInpatient;
|
||||
int roomCategory;
|
||||
bool isActive;
|
||||
int createdBy;
|
||||
String createdOn;
|
||||
int editedBy;
|
||||
String editedOn;
|
||||
|
||||
InsuranceCompaniesSchemeModel(
|
||||
{this.setupID,
|
||||
this.projectID,
|
||||
this.companyID,
|
||||
this.subCategoryID,
|
||||
this.subCategoryDesc,
|
||||
this.subCategoryDescN,
|
||||
this.validFrom,
|
||||
this.validTo,
|
||||
this.isInpatient,
|
||||
this.roomCategory,
|
||||
this.isActive,
|
||||
this.createdBy,
|
||||
this.createdOn,
|
||||
this.editedBy,
|
||||
this.editedOn});
|
||||
|
||||
InsuranceCompaniesSchemeModel.fromJson(Map<String, dynamic> json) {
|
||||
setupID = json['SetupID'];
|
||||
projectID = json['ProjectID'];
|
||||
companyID = json['CompanyID'];
|
||||
subCategoryID = json['SubCategoryID'];
|
||||
subCategoryDesc = json['SubCategoryDesc'];
|
||||
subCategoryDescN = json['SubCategoryDescN'];
|
||||
validFrom = json['ValidFrom'];
|
||||
validTo = json['ValidTo'];
|
||||
isInpatient = json['IsInpatient'];
|
||||
roomCategory = json['RoomCategory'];
|
||||
isActive = json['IsActive'];
|
||||
createdBy = json['CreatedBy'];
|
||||
createdOn = json['CreatedOn'];
|
||||
editedBy = json['EditedBy'];
|
||||
editedOn = json['EditedOn'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['SetupID'] = this.setupID;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['CompanyID'] = this.companyID;
|
||||
data['SubCategoryID'] = this.subCategoryID;
|
||||
data['SubCategoryDesc'] = this.subCategoryDesc;
|
||||
data['SubCategoryDescN'] = this.subCategoryDescN;
|
||||
data['ValidFrom'] = this.validFrom;
|
||||
data['ValidTo'] = this.validTo;
|
||||
data['IsInpatient'] = this.isInpatient;
|
||||
data['RoomCategory'] = this.roomCategory;
|
||||
data['IsActive'] = this.isActive;
|
||||
data['CreatedBy'] = this.createdBy;
|
||||
data['CreatedOn'] = this.createdOn;
|
||||
data['EditedBy'] = this.editedBy;
|
||||
data['EditedOn'] = this.editedOn;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue