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.
hmg-mohemm-flutter-app/lib/models/basic_member_information_mo...

33 lines
1000 B
Dart

class BasicMemberInformationModel {
String? pEMAILADDRESS;
String? pLEGISLATIONCODE;
String? pMOBILENUMBER;
String? pRETURNMSG;
String? pRETURNSTATUS;
BasicMemberInformationModel(
{this.pEMAILADDRESS,
this.pLEGISLATIONCODE,
this.pMOBILENUMBER,
this.pRETURNMSG,
this.pRETURNSTATUS});
BasicMemberInformationModel.fromJson(Map<String, dynamic> json) {
pEMAILADDRESS = json['P_EMAIL_ADDRESS'];
pLEGISLATIONCODE = json['P_LEGISLATION_CODE'];
pMOBILENUMBER = json['P_MOBILE_NUMBER'];
pRETURNMSG = json['P_RETURN_MSG'];
pRETURNSTATUS = json['P_RETURN_STATUS'];
}
Map<String, dynamic> toJson() {
Map<String, dynamic> data = new Map<String, dynamic>();
data['P_EMAIL_ADDRESS'] = this.pEMAILADDRESS;
data['P_LEGISLATION_CODE'] = this.pLEGISLATIONCODE;
data['P_MOBILE_NUMBER'] = this.pMOBILENUMBER;
data['P_RETURN_MSG'] = this.pRETURNMSG;
data['P_RETURN_STATUS'] = this.pRETURNSTATUS;
return data;
}
}