class SendActivationRequest { int patientMobileNumber; String mobileNo; String deviceToken; bool projectOutSA; int loginType; String zipCode; bool isRegister; String logInTokenID; int searchType; int patientID; String nationalID; String patientIdentificationID; int oTPSendType; int languageID; double versionID; int channel; String iPAdress; String generalid; int patientOutSA; Null sessionID; bool isDentalAllowedBackend; int deviceTypeID; String sMSSignature; SendActivationRequest( {this.patientMobileNumber, this.mobileNo, this.deviceToken, this.projectOutSA, this.loginType, this.zipCode, this.isRegister, this.logInTokenID, this.searchType, this.patientID, this.nationalID, this.patientIdentificationID, this.oTPSendType, this.languageID, this.versionID, this.channel, this.iPAdress, this.generalid, this.patientOutSA, this.sessionID, this.isDentalAllowedBackend, this.deviceTypeID, this.sMSSignature}); SendActivationRequest.fromJson(Map json) { patientMobileNumber = json['PatientMobileNumber']; mobileNo = json['MobileNo']; deviceToken = json['DeviceToken']; projectOutSA = json['ProjectOutSA']; loginType = json['LoginType']; zipCode = json['ZipCode']; isRegister = json['isRegister']; logInTokenID = json['LogInTokenID']; searchType = json['SearchType']; patientID = json['PatientID']; nationalID = json['NationalID']; patientIdentificationID = json['PatientIdentificationID']; oTPSendType = json['OTP_SendType']; languageID = json['LanguageID']; versionID = json['VersionID']; channel = json['Channel']; iPAdress = json['IPAdress']; generalid = json['generalid']; patientOutSA = json['PatientOutSA']; sessionID = json['SessionID']; isDentalAllowedBackend = json['isDentalAllowedBackend']; deviceTypeID = json['DeviceTypeID']; sMSSignature = json['SMSSignature']; } Map toJson() { final Map data = new Map(); data['PatientMobileNumber'] = this.patientMobileNumber; data['MobileNo'] = this.mobileNo; data['DeviceToken'] = this.deviceToken; data['ProjectOutSA'] = this.projectOutSA; data['LoginType'] = this.loginType; data['ZipCode'] = this.zipCode; data['isRegister'] = this.isRegister; data['LogInTokenID'] = this.logInTokenID; data['SearchType'] = this.searchType; data['PatientID'] = this.patientID; data['NationalID'] = this.nationalID; data['PatientIdentificationID'] = this.patientIdentificationID; data['OTP_SendType'] = this.oTPSendType; data['LanguageID'] = this.languageID; data['VersionID'] = this.versionID; data['Channel'] = this.channel; data['IPAdress'] = this.iPAdress; data['generalid'] = this.generalid; data['PatientOutSA'] = this.patientOutSA; data['SessionID'] = this.sessionID; data['isDentalAllowedBackend'] = this.isDentalAllowedBackend; data['DeviceTypeID'] = this.deviceTypeID; data['SMSSignature'] = sMSSignature; return data; } }