first step from live care fixes
parent
b1062dd537
commit
176c0ab97c
@ -1,56 +1,56 @@
|
|||||||
class StartCallReq {
|
class StartCallReq {
|
||||||
int vCID;
|
String clincName;
|
||||||
bool isrecall;
|
int clinicId;
|
||||||
String tokenID;
|
String docSpec;
|
||||||
String generalid;
|
String docotrName;
|
||||||
int doctorId;
|
int doctorId;
|
||||||
|
String generalid;
|
||||||
bool isOutKsa;
|
bool isOutKsa;
|
||||||
|
bool isrecall;
|
||||||
String projectName;
|
String projectName;
|
||||||
String docotrName;
|
String tokenID;
|
||||||
String clincName;
|
int vCID;
|
||||||
String docSpec;
|
|
||||||
int clinicId;
|
|
||||||
|
|
||||||
StartCallReq(
|
StartCallReq(
|
||||||
{this.vCID,
|
{this.clincName,
|
||||||
this.isrecall,
|
this.clinicId,
|
||||||
this.tokenID,
|
this.docSpec,
|
||||||
this.generalid,
|
this.docotrName,
|
||||||
this.doctorId,
|
this.doctorId,
|
||||||
|
this.generalid,
|
||||||
this.isOutKsa,
|
this.isOutKsa,
|
||||||
|
this.isrecall,
|
||||||
this.projectName,
|
this.projectName,
|
||||||
this.docotrName,
|
this.tokenID,
|
||||||
this.clincName,
|
this.vCID});
|
||||||
this.docSpec,
|
|
||||||
this.clinicId});
|
|
||||||
|
|
||||||
StartCallReq.fromJson(Map<String, dynamic> json) {
|
StartCallReq.fromJson(Map<String, dynamic> json) {
|
||||||
vCID = json['VC_ID'];
|
clincName = json['clincName'];
|
||||||
isrecall = json['isrecall'];
|
clinicId = json['ClinicId'];
|
||||||
tokenID = json['TokenID'];
|
docSpec = json['Doc_Spec'];
|
||||||
generalid = json['generalid'];
|
docotrName = json['DocotrName'];
|
||||||
doctorId = json['DoctorId'];
|
doctorId = json['DoctorId'];
|
||||||
|
generalid = json['generalid'];
|
||||||
isOutKsa = json['IsOutKsa'];
|
isOutKsa = json['IsOutKsa'];
|
||||||
|
isrecall = json['isrecall'];
|
||||||
projectName = json['projectName'];
|
projectName = json['projectName'];
|
||||||
docotrName = json['DocotrName'];
|
tokenID = json['TokenID'];
|
||||||
clincName = json['clincName'];
|
vCID = json['VC_ID'];
|
||||||
docSpec = json['Doc_Spec'];
|
|
||||||
clinicId = json['ClinicId'];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Map<String, dynamic> toJson() {
|
Map<String, dynamic> toJson() {
|
||||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
data['VC_ID'] = this.vCID;
|
data['clincName'] = this.clincName;
|
||||||
data['isrecall'] = this.isrecall;
|
data['ClinicId'] = this.clinicId;
|
||||||
data['TokenID'] = this.tokenID;
|
data['Doc_Spec'] = this.docSpec;
|
||||||
data['generalid'] = this.generalid;
|
data['DocotrName'] = this.docotrName;
|
||||||
data['DoctorId'] = this.doctorId;
|
data['DoctorId'] = this.doctorId;
|
||||||
|
data['generalid'] = this.generalid;
|
||||||
data['IsOutKsa'] = this.isOutKsa;
|
data['IsOutKsa'] = this.isOutKsa;
|
||||||
|
data['isrecall'] = this.isrecall;
|
||||||
data['projectName'] = this.projectName;
|
data['projectName'] = this.projectName;
|
||||||
data['DocotrName'] = this.docotrName;
|
data['TokenID'] = this.tokenID;
|
||||||
data['clincName'] = this.clincName;
|
data['VC_ID'] = this.vCID;
|
||||||
data['Doc_Spec'] = this.docSpec;
|
|
||||||
data['ClinicId'] = this.clinicId;
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue