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; dynamic sessionID; bool? isDentalAllowedBackend; int? deviceTypeID; String? sMSSignature; String? dob; int? isHijri; String? healthId; int? responseID; int? status; int? familyRegionID; bool? isPatientExcluded; 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, this.dob, this.isHijri, this.healthId, this.responseID, this.status, this.familyRegionID, this.isPatientExcluded }); 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']; dob = json['DOB']; isHijri = json['IsHijri']; healthId = json['HealthId']; responseID = json['ReponseID']; status = json['Status']; familyRegionID = json['FamilyRegionID']; isPatientExcluded = json['IsPatientExcluded']; } 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; data['DOB'] = dob; data['IsHijri'] = isHijri; data['HealthId'] = healthId; data['ResponseID'] = responseID; data['Status'] = status; data['FamilyRegionID'] = familyRegionID; data['IsPatientExcluded'] = isPatientExcluded; return data; } }