class tourExpensesAddViewResponse { List? daAmount; List? tourType; List? travelType; String? error; String? message; int? sessionExists; tourExpensesAddViewResponse({ this.daAmount, this.tourType, this.travelType, this.error, this.message, this.sessionExists, }); tourExpensesAddViewResponse.fromJson(Map json) { daAmount = json['da_amount'].cast(); tourType = json['tour_type'].cast(); travelType = json['travel_type'].cast(); error = json['error']; message = json['message']; sessionExists = json['session_exists']; } Map toJson() { final Map data = {}; data['da_amount'] = daAmount; data['tour_type'] = tourType; data['travel_type'] = travelType; data['error'] = error; data['message'] = message; data['session_exists'] = sessionExists; return data; } }