|
|
|
|
@ -9,7 +9,7 @@ class GetRescheduleLeavesResponse {
|
|
|
|
|
int requisitionNo;
|
|
|
|
|
int requisitionType;
|
|
|
|
|
int status;
|
|
|
|
|
|
|
|
|
|
String createdOn;
|
|
|
|
|
GetRescheduleLeavesResponse(
|
|
|
|
|
{this.clinicId,
|
|
|
|
|
this.coveringDoctorId,
|
|
|
|
|
@ -20,7 +20,8 @@ class GetRescheduleLeavesResponse {
|
|
|
|
|
this.reasonId,
|
|
|
|
|
this.requisitionNo,
|
|
|
|
|
this.requisitionType,
|
|
|
|
|
this.status});
|
|
|
|
|
this.status,
|
|
|
|
|
this.createdOn});
|
|
|
|
|
|
|
|
|
|
GetRescheduleLeavesResponse.fromJson(Map<String, dynamic> json) {
|
|
|
|
|
clinicId = json['clinicId'];
|
|
|
|
|
@ -33,6 +34,7 @@ class GetRescheduleLeavesResponse {
|
|
|
|
|
requisitionNo = json['requisitionNo'];
|
|
|
|
|
requisitionType = json['requisitionType'];
|
|
|
|
|
status = json['status'];
|
|
|
|
|
createdOn = json['createdOn'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
|
@ -47,6 +49,7 @@ class GetRescheduleLeavesResponse {
|
|
|
|
|
data['requisitionNo'] = this.requisitionNo;
|
|
|
|
|
data['requisitionType'] = this.requisitionType;
|
|
|
|
|
data['status'] = this.status;
|
|
|
|
|
data['createdOn'] = this.createdOn;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|