class MemberLoginListModel { String? pEMAILADDRESS; String? pINVALIDLOGINMSG; String? pLEGISLATIONCODE; String? pMOBILENUMBER; String? pPASSOWRDEXPIRED; String? pPASSWORDEXPIREDMSG; String? pRETURNMSG; String? pRETURNSTATUS; int? pSESSIONID; MemberLoginListModel( {this.pEMAILADDRESS, this.pINVALIDLOGINMSG, this.pLEGISLATIONCODE, this.pMOBILENUMBER, this.pPASSOWRDEXPIRED, this.pPASSWORDEXPIREDMSG, this.pRETURNMSG, this.pRETURNSTATUS, this.pSESSIONID}); MemberLoginListModel.fromJson(Map json) { pEMAILADDRESS = json['P_EMAIL_ADDRESS']; pINVALIDLOGINMSG = json['P_INVALID_LOGIN_MSG']; pLEGISLATIONCODE = json['P_LEGISLATION_CODE']; pMOBILENUMBER = json['P_MOBILE_NUMBER']; pPASSOWRDEXPIRED = json['P_PASSOWRD_EXPIRED']; pPASSWORDEXPIREDMSG = json['P_PASSWORD_EXPIRED_MSG']; pRETURNMSG = json['P_RETURN_MSG']; pRETURNSTATUS = json['P_RETURN_STATUS']; pSESSIONID = json['P_SESSION_ID']; } Map toJson() { final Map data = new Map(); data['P_EMAIL_ADDRESS'] = this.pEMAILADDRESS; data['P_INVALID_LOGIN_MSG'] = this.pINVALIDLOGINMSG; data['P_LEGISLATION_CODE'] = this.pLEGISLATIONCODE; data['P_MOBILE_NUMBER'] = this.pMOBILENUMBER; data['P_PASSOWRD_EXPIRED'] = this.pPASSOWRDEXPIRED; data['P_PASSWORD_EXPIRED_MSG'] = this.pPASSWORDEXPIREDMSG; data['P_RETURN_MSG'] = this.pRETURNMSG; data['P_RETURN_STATUS'] = this.pRETURNSTATUS; data['P_SESSION_ID'] = this.pSESSIONID; return data; } }