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