You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm-flutter-app/lib/models/member_login_list_model.dart

49 lines
1.6 KiB
Dart

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<String, dynamic> 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<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
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;
}
}