class loadGeneratorDetailsResponse { int? error; String? genId; String? genHashId; String? aname; String? emodel; String? spname; String? mob1; String? mob2; String? mail; String? cname; String? engineNo; String? dateOfEngineSale; String? altNo; String? btryNo; String? dgSetNo; String? state; String? district; String? address; String? loc; String? dispDate; String? cmsngDate; String? status; List? complaintCategoryList; List? complaintTypeList; List? complaintDescriptionList; String? nextService; List? contactList; List? complaintList; List? scheduleList; int? sessionExists; loadGeneratorDetailsResponse( {this.error, this.genId, this.genHashId, this.aname, this.emodel, this.spname, this.mob1, this.mob2, this.mail, this.cname, this.engineNo, this.dateOfEngineSale, this.altNo, this.btryNo, this.dgSetNo, this.state, this.district, this.address, this.loc, this.dispDate, this.cmsngDate, this.status, this.complaintCategoryList, this.complaintTypeList, this.complaintDescriptionList, this.nextService, this.contactList, this.complaintList, this.scheduleList, this.sessionExists}); loadGeneratorDetailsResponse.fromJson(Map json) { error = json['error']; genId = json['gen_id']; genHashId = json['gen_hash_id']; aname = json['aname']; emodel = json['emodel']; spname = json['spname']; mob1 = json['mob1']; mob2 = json['mob2']; mail = json['mail']; cname = json['cname']; engineNo = json['engine_no']; dateOfEngineSale = json['date_of_engine_sale']; altNo = json['alt_no']; btryNo = json['btry_no']; dgSetNo = json['dg_set_no']; state = json['state']; district = json['district']; address = json['address']; loc = json['loc']; dispDate = json['disp_date']; cmsngDate = json['cmsng_date']; status = json['status']; if (json['complaint_category_list'] != null) { complaintCategoryList = []; json['complaint_category_list'].forEach((v) { complaintCategoryList!.add(new ComplaintCategoryList.fromJson(v)); }); } if (json['complaint_type_list'] != null) { complaintTypeList = []; json['complaint_type_list'].forEach((v) { complaintTypeList!.add(new ComplaintTypeList.fromJson(v)); }); } if (json['complaint_description_list'] != null) { complaintDescriptionList = []; json['complaint_description_list'].forEach((v) { complaintDescriptionList!.add(new ComplaintDescriptionList.fromJson(v)); }); } nextService = json['next_service']; if (json['contact_list'] != null) { contactList = []; json['contact_list'].forEach((v) { contactList!.add(new ContactList.fromJson(v)); }); } if (json['complaint_list'] != null) { complaintList = []; json['complaint_list'].forEach((v) { complaintList!.add(new ComplaintList.fromJson(v)); }); } if (json['schedule_list'] != null) { scheduleList = []; json['schedule_list'].forEach((v) { scheduleList!.add(new ScheduleList.fromJson(v)); }); } sessionExists = json['session_exists']; } Map toJson() { final Map data = new Map(); data['error'] = this.error; data['gen_id'] = this.genId; data['gen_hash_id'] = this.genHashId; data['aname'] = this.aname; data['emodel'] = this.emodel; data['spname'] = this.spname; data['mob1'] = this.mob1; data['mob2'] = this.mob2; data['mail'] = this.mail; data['cname'] = this.cname; data['engine_no'] = this.engineNo; data['date_of_engine_sale'] = this.dateOfEngineSale; data['alt_no'] = this.altNo; data['btry_no'] = this.btryNo; data['dg_set_no'] = this.dgSetNo; data['state'] = this.state; data['district'] = this.district; data['address'] = this.address; data['loc'] = this.loc; data['disp_date'] = this.dispDate; data['cmsng_date'] = this.cmsngDate; data['status'] = this.status; if (this.complaintCategoryList != null) { data['complaint_category_list'] = this.complaintCategoryList!.map((v) => v.toJson()).toList(); } if (this.complaintTypeList != null) { data['complaint_type_list'] = this.complaintTypeList!.map((v) => v.toJson()).toList(); } if (this.complaintDescriptionList != null) { data['complaint_description_list'] = this.complaintDescriptionList!.map((v) => v.toJson()).toList(); } data['next_service'] = this.nextService; if (this.contactList != null) { data['contact_list'] = this.contactList!.map((v) => v.toJson()).toList(); } if (this.complaintList != null) { data['complaint_list'] = this.complaintList!.map((v) => v.toJson()).toList(); } if (this.scheduleList != null) { data['schedule_list'] = this.scheduleList!.map((v) => v.toJson()).toList(); } data['session_exists'] = this.sessionExists; return data; } } class ComplaintCategoryList { String? id; String? name; ComplaintCategoryList({this.id, this.name}); ComplaintCategoryList.fromJson(Map json) { id = json['id']; name = json['name']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['name'] = this.name; return data; } } class ContactList { String? name; String? designation; String? mob1; String? mob2; String? mail; String? type; ContactList( {this.name, this.designation, this.mob1, this.mob2, this.mail, this.type}); ContactList.fromJson(Map json) { name = json['name']; designation = json['designation']; mob1 = json['mob1']; mob2 = json['mob2']; mail = json['mail']; type = json['type']; } Map toJson() { final Map data = new Map(); data['name'] = this.name; data['designation'] = this.designation; data['mob1'] = this.mob1; data['mob2'] = this.mob2; data['mail'] = this.mail; data['type'] = this.type; return data; } } class ComplaintList { String? complaintId; String? createdBy; String? complaintTypeName; String? technicianName; String? complaintCategoryName; String? openStatus; String? createdDate; ComplaintList( {this.complaintId, this.createdBy, this.complaintTypeName, this.technicianName, this.complaintCategoryName, this.openStatus, this.createdDate}); ComplaintList.fromJson(Map json) { complaintId = json['complaint_id']; createdBy = json['created_by']; complaintTypeName = json['complaint_type_name']; technicianName = json['technician_name']; complaintCategoryName = json['complaint_category_name']; openStatus = json['open_status']; createdDate = json['created_date']; } Map toJson() { final Map data = new Map(); data['complaint_id'] = this.complaintId; data['created_by'] = this.createdBy; data['complaint_type_name'] = this.complaintTypeName; data['technician_name'] = this.technicianName; data['complaint_category_name'] = this.complaintCategoryName; data['open_status'] = this.openStatus; data['created_date'] = this.createdDate; return data; } } class ScheduleList { String? serviceScheduleId; String? name; String? complaintType; String? complaintCategory; String? complaintDescription; String? scheduleManagerName; String? complaintId; String? dueDate; String? status; String? feedbackStatus; String? createdDatetime; ScheduleList( {this.serviceScheduleId, this.name, this.complaintType, this.complaintCategory, this.complaintDescription, this.scheduleManagerName, this.complaintId, this.dueDate, this.status, this.feedbackStatus, this.createdDatetime}); ScheduleList.fromJson(Map json) { serviceScheduleId = json['service_schedule_id']; name = json['name']; complaintType = json['complaint_type']; complaintCategory = json['complaint_category']; complaintDescription = json['complaint_description']; scheduleManagerName = json['schedule_manager_name']; complaintId = json['complaint_id']; dueDate = json['due_date']; status = json['status']; feedbackStatus = json['feedback_status']; createdDatetime = json['created_datetime']; } Map toJson() { final Map data = new Map(); data['service_schedule_id'] = this.serviceScheduleId; data['name'] = this.name; data['complaint_type'] = this.complaintType; data['complaint_category'] = this.complaintCategory; data['complaint_description'] = this.complaintDescription; data['schedule_manager_name'] = this.scheduleManagerName; data['complaint_id'] = this.complaintId; data['due_date'] = this.dueDate; data['status'] = this.status; data['feedback_status'] = this.feedbackStatus; data['created_datetime'] = this.createdDatetime; return data; } } class ComplaintTypeList { String? id; String? name; ComplaintTypeList({this.id, this.name}); ComplaintTypeList.fromJson(Map json) { id = json['id']; name = json['name']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['name'] = this.name; return data; } } class ComplaintDescriptionList { String? id; String? name; ComplaintDescriptionList({this.id, this.name}); ComplaintDescriptionList.fromJson(Map json) { id = json['id']; name = json['name']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['name'] = this.name; return data; } }