|
|
|
|
@ -42,8 +42,9 @@ class ResponseInpatientAdvanceInfo {
|
|
|
|
|
num requestedAmount;
|
|
|
|
|
String setupId;
|
|
|
|
|
int status;
|
|
|
|
|
int paymentRequestID;
|
|
|
|
|
|
|
|
|
|
ResponseInpatientAdvanceInfo({this.admissionNo, this.admissionReqNo, this.createdOn, this.patientId, this.projectId, this.requestedAmount, this.setupId, this.status});
|
|
|
|
|
ResponseInpatientAdvanceInfo({this.admissionNo, this.admissionReqNo, this.createdOn, this.patientId, this.projectId, this.requestedAmount, this.setupId, this.status, this.paymentRequestID});
|
|
|
|
|
|
|
|
|
|
ResponseInpatientAdvanceInfo.fromJson(Map<String, dynamic> json) {
|
|
|
|
|
admissionNo = json['admissionNo'];
|
|
|
|
|
@ -54,6 +55,7 @@ class ResponseInpatientAdvanceInfo {
|
|
|
|
|
requestedAmount = json['requestedAmount'];
|
|
|
|
|
setupId = json['setupId'];
|
|
|
|
|
status = json['status'];
|
|
|
|
|
paymentRequestID = json['PaymentRequestId'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
|
@ -66,6 +68,7 @@ class ResponseInpatientAdvanceInfo {
|
|
|
|
|
data['requestedAmount'] = this.requestedAmount;
|
|
|
|
|
data['setupId'] = this.setupId;
|
|
|
|
|
data['status'] = this.status;
|
|
|
|
|
data['PaymentRequestId'] = this.paymentRequestID;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|