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.
69 lines
2.1 KiB
Dart
69 lines
2.1 KiB
Dart
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;
|
|
int patientID;
|
|
|
|
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,
|
|
this.patientID});
|
|
|
|
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'];
|
|
patientID = json['PatientID'];
|
|
}
|
|
|
|
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;
|
|
data['PatientID'] = this.patientID;
|
|
return data;
|
|
}
|
|
}
|