|
|
|
|
@ -24,7 +24,7 @@ class StartCallRes {
|
|
|
|
|
isAuthenticated = json['IsAuthenticated'];
|
|
|
|
|
messageStatus = json['MessageStatus'];
|
|
|
|
|
appointmentNo = json['AppointmentNo'];
|
|
|
|
|
isRecording = json['isRecording'];
|
|
|
|
|
isRecording = json['IsRecordedSession'] ?? false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
|
@ -35,7 +35,7 @@ class StartCallRes {
|
|
|
|
|
data['IsAuthenticated'] = this.isAuthenticated;
|
|
|
|
|
data['MessageStatus'] = this.messageStatus;
|
|
|
|
|
data['AppointmentNo'] = this.appointmentNo;
|
|
|
|
|
data['isRecording'] = this.isRecording;
|
|
|
|
|
data['IsRecordedSession'] = this.isRecording ?? false;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|