class GetRFCEmployeeList { String? aCTION; String? eMPLOYEEDISPLAYNAME; String? eMPLOYEEIMAGE; int? fROMROWNUM; int? nOOFROWS; int? rOWNUM; int? sEQ; int? tOROWNUM; String? uSERNAME; GetRFCEmployeeList( {this.aCTION, this.eMPLOYEEDISPLAYNAME, this.eMPLOYEEIMAGE, this.fROMROWNUM, this.nOOFROWS, this.rOWNUM, this.sEQ, this.tOROWNUM, this.uSERNAME}); GetRFCEmployeeList.fromJson(Map json) { aCTION = json['ACTION']; eMPLOYEEDISPLAYNAME = json['EMPLOYEE_DISPLAY_NAME']; eMPLOYEEIMAGE = json['EMPLOYEE_IMAGE']; fROMROWNUM = json['FROM_ROW_NUM']; nOOFROWS = json['NO_OF_ROWS']; rOWNUM = json['ROW_NUM']; sEQ = json['SEQ']; tOROWNUM = json['TO_ROW_NUM']; uSERNAME = json['USER_NAME']; } Map toJson() { Map data = new Map(); data['ACTION'] = this.aCTION; data['EMPLOYEE_DISPLAY_NAME'] = this.eMPLOYEEDISPLAYNAME; data['EMPLOYEE_IMAGE'] = this.eMPLOYEEIMAGE; data['FROM_ROW_NUM'] = this.fROMROWNUM; data['NO_OF_ROWS'] = this.nOOFROWS; data['ROW_NUM'] = this.rOWNUM; data['SEQ'] = this.sEQ; data['TO_ROW_NUM'] = this.tOROWNUM; data['USER_NAME'] = this.uSERNAME; return data; } }