|
|
|
|
@ -16,7 +16,9 @@ class InsuranceCardModel {
|
|
|
|
|
int patientType;
|
|
|
|
|
String groupName;
|
|
|
|
|
String companyName;
|
|
|
|
|
int companyID;
|
|
|
|
|
String subCategoryDesc;
|
|
|
|
|
int subCategoryID;
|
|
|
|
|
String patientCardID;
|
|
|
|
|
String insurancePolicyNumber;
|
|
|
|
|
bool isActive;
|
|
|
|
|
@ -25,6 +27,7 @@ class InsuranceCardModel {
|
|
|
|
|
InsuranceCardModel({
|
|
|
|
|
this.insurancePolicyNumber,
|
|
|
|
|
this.subCategoryDesc,
|
|
|
|
|
this.subCategoryID,
|
|
|
|
|
this.versionID,
|
|
|
|
|
this.channel,
|
|
|
|
|
this.languageID,
|
|
|
|
|
@ -40,6 +43,7 @@ class InsuranceCardModel {
|
|
|
|
|
this.patientType,
|
|
|
|
|
this.groupName,
|
|
|
|
|
this.companyName,
|
|
|
|
|
this.companyID,
|
|
|
|
|
this.patientCardID,
|
|
|
|
|
this.isActive,
|
|
|
|
|
this.cardValidTo
|
|
|
|
|
@ -50,6 +54,7 @@ class InsuranceCardModel {
|
|
|
|
|
insurancePolicyNumber = json['InsurancePolicyNo'];
|
|
|
|
|
patientCardID = json['PatientCardID'];
|
|
|
|
|
companyName = json['CompanyName'];
|
|
|
|
|
companyID = json['CompanyID'];
|
|
|
|
|
groupName = json['GroupName'];
|
|
|
|
|
versionID = json['VersionID'];
|
|
|
|
|
channel = json['Channel'];
|
|
|
|
|
@ -65,6 +70,7 @@ class InsuranceCardModel {
|
|
|
|
|
patientTypeID = json['PatientTypeID'];
|
|
|
|
|
patientType = json['PatientType'];
|
|
|
|
|
subCategoryDesc = json['SubCategoryDesc'];
|
|
|
|
|
subCategoryID = json["SubCategoryID"];
|
|
|
|
|
cardValidTo = json['CardValidTo'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|