import 'package:doctor_app_flutter/config/config.dart'; class RequestSchedule { int projectID; int clinicID; int doctorID; int doctorWorkingHoursDays; int languageID; String stamp; String iPAdress; double versionID; int channel; String tokenID; String sessionID; bool isLoginForDoctorApp; bool patientOutSA; int patientTypeID; RequestSchedule( {this.projectID, this.clinicID, this.doctorID, this.doctorWorkingHoursDays = 7, this.languageID, this.stamp, this.iPAdress, this.versionID, this.channel, this.tokenID, this.sessionID, this.isLoginForDoctorApp, this.patientOutSA, this.patientTypeID = 1}); RequestSchedule.fromJson(Map json) { projectID = json['ProjectID']; clinicID = json['ClinicID']; doctorID = json['DoctorID']; doctorWorkingHoursDays = json['DoctorWorkingHoursDays']; languageID = json['LanguageID']; stamp = json['stamp']; iPAdress = json['IPAdress']; versionID = json['VersionID']; channel = json['Channel']; tokenID = json['TokenID']; sessionID = json['SessionID']; isLoginForDoctorApp = json['IsLoginForDoctorApp']; patientOutSA = json['PatientOutSA']; patientTypeID = json['PatientTypeID']; } Map toJson() { final Map data = new Map(); data['ProjectID'] = this.projectID; data['ClinicID'] = this.clinicID; data['DoctorID'] = this.doctorID; data['DoctorWorkingHoursDays'] = this.doctorWorkingHoursDays; data['LanguageID'] = this.languageID; data['stamp'] = this.stamp; data['IPAdress'] = this.iPAdress; data['VersionID'] = this.versionID; data['Channel'] = this.channel; data['TokenID'] = this.tokenID; data['SessionID'] = this.sessionID; data['IsLoginForDoctorApp'] = this.isLoginForDoctorApp; data['PatientOutSA'] = this.patientOutSA; data['PatientTypeID'] = this.patientTypeID; return data; } }